add nfs mounts on desktop1
All checks were successful
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

View File

@ -24,6 +24,25 @@
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; 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 = { smayzy = {
desktop.enable = true; desktop.enable = true;
nvidia.enable = true; nvidia.enable = true;

View File

@ -43,6 +43,7 @@
fileSystems."/home" = { fileSystems."/home" = {
device = "/dev/disk/by-uuid/30759de4-934a-4c89-aca5-2e4fed7fe94f"; device = "/dev/disk/by-uuid/30759de4-934a-4c89-aca5-2e4fed7fe94f";
fsType = "ext4"; fsType = "ext4";
neededForBoot = true;
}; };
swapDevices = [ swapDevices = [