virgil/nas, flake update

This commit is contained in:
tulg 2026-01-25 21:57:21 +03:00
parent 1c26b5b65f
commit e912383941
2 changed files with 36 additions and 31 deletions

View file

@ -18,12 +18,17 @@
boot.extraModulePackages = [];
swapDevices = [];
fileSystems."/mnt/share" = {
device = "192.168.1.200:/Main/";
fsType = "nfs";
options = ["_netdev" "noauto" "x-systemd.automount" "x-systemd.mount-timeout=10" "timeo=14" "x-systemd.idle-timeout=600"];
};
fileSystems."/mnt/backup" = {
device = "/dev/disk/by-uuid/4242ad6b-4b5e-4990-bcf7-501f6099b429";
fsType = "ext4";
options = [
"nofail" # dont block boot if missing
"x-systemd.automount" # mount on first access
# "x-systemd.automount" # mount on first access
"noatime"
];
};