init repos

This commit is contained in:
2026-06-19 05:47:33 +02:00
commit d5d15832f5
20 changed files with 534 additions and 0 deletions

23
modules/system/nfs.nix Normal file
View File

@@ -0,0 +1,23 @@
{
fileSystems."/mnt/nas/commun" = {
device = "192.168.10.50:/mnt/DocNas/Commun";
fsType = "nfs";
options = [
"nfsvers=4"
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=600"
];
};
fileSystems."/mnt/nas/benjamin" = {
device = "192.168.10.50:/mnt/DocNas/Benjamin";
fsType = "nfs";
options = [
"nfsvers=4"
"x-systemd.automount"
"noauto"
"x-systemd.idle-timeout=600"
];
};
}