installed cachefilesd

This commit is contained in:
Leyla Becker 2024-05-05 15:10:54 -05:00
parent c568b7fb65
commit 5fb1456622
2 changed files with 6 additions and 2 deletions

View file

@ -70,5 +70,7 @@
# system debuging tools
iputils
dnsutils
cachefilesd
];
}

View file

@ -23,18 +23,20 @@
fsType = "vfat";
};
services.cachefilesd.enable = true;
fileSystems."/mnt/leyla_home" =
{
device = "server.arpa:/home/leyla";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" ];
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
fileSystems."/mnt/share_home" =
{
device = "server.arpa:/home/share";
fsType = "nfs";
options = [ "x-systemd.automount" "noauto" "x-systemd.idle-timeout=600" ];
options = [ "x-systemd.automount" "user" "nofail" "soft" "x-systemd.idle-timeout=600" "fsc" ];
};
fileSystems."/mnt/docker_home" =