added raspi-backup share
Check NixOS configurations / eval-hosts (push) Failing after 11m30s

This commit is contained in:
2026-07-13 11:44:45 +10:00
parent 229cd06f73
commit 960548c2ac
3 changed files with 13 additions and 0 deletions
+1
View File
@@ -31,6 +31,7 @@
systemd.tmpfiles.rules = [
"L+ /home/nixos/docker - - - - /mnt/docker/config"
"d /mnt/docker 0755 nixos users -"
"d /mnt/raspi-backup 0755 nixos users -"
];
users.users.nixos.extraGroups = [ "docker" ];
services.openssh.settings.PermitRootLogin = "no";
+1
View File
@@ -41,6 +41,7 @@ services.nfs.server = {
/tank/docker/volumes 192.168.2.0/24(rw,sync,no_subtree_check,no_root_squash)
/tank/docker/databases 192.168.2.0/24(rw,sync,no_subtree_check,no_root_squash)
/tank/docker/nextcloud-data 192.168.2.0/24(rw,sync,no_subtree_check,no_root_squash)
/tank/raspi/volumes 192.168.2.0/24(rw,sync,no_subtree_check,no_root_squash)
'';
};
+11
View File
@@ -49,4 +49,15 @@
];
};
fileSystems."/mnt/raspi-backup" = {
device = "server:/tank/raspi/volumes";
fsType = "nfs";
options = [
"nfsvers=4.2"
"_netdev"
"x-systemd.automount"
"noatime"
];
};
}