fix: update nfs mounts

Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2025-07-09 08:03:12 -04:00
parent 28fcf14fc5
commit 6f1d2e268a
Signed by: gwg313
GPG key ID: 60FF63B4826B7400

View file

@ -11,17 +11,6 @@
config = lib.mkIf config.nfs.enable {
fileSystems = {
"/media" = {
device = inputs.secrets.nfs.devices.media;
fsType = "nfs";
options = [
"x-systemd.automount"
"noauto"
"x-systemd.after=network-online.target"
"x-systemd.mount-timeout=90"
];
};
"/books" = {
device = inputs.secrets.nfs.devices.books;
fsType = "nfs";
@ -44,8 +33,8 @@
];
};
"/projects" = {
device = inputs.secrets.nfs.devices.projects;
"/personal" = {
device = inputs.secrets.nfs.devices.personal;
fsType = "nfs";
options = [
"x-systemd.automount"