add nfs mounts on desktop1
nixos config pipeline / show-flake (push) Successful in 1m8s
nixos config pipeline / deploy (push) Successful in 59s

This commit is contained in:
smayzy
2025-11-01 14:17:47 +01:00
parent 589bb177d5
commit 684e083884
2 changed files with 20 additions and 0 deletions
+19
View File
@@ -24,6 +24,25 @@
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
fileSystems."/home/smayzy/Main" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Main";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
depends = [ "/home" ];
};
fileSystems."/home/smayzy/ISO" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/ISO";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
depends = [ "/home" ];
};
fileSystems."/home/smayzy/Vault" = {
device = "nfs-srv1.internal.smayzy.ovh:/srv/NFS/Vault";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "nfsvers=4" ];
depends = [ "/home" ];
};
smayzy = {
desktop.enable = true;
nvidia.enable = true;