Upgrade to nixos 25.05 #4

Merged
felixalb merged 15 commits from nixos-25.05 into main 2025-06-08 22:12:40 +02:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit c73d9761bc - Show all commits

View File

@ -9,7 +9,7 @@
./hardware-configuration.nix ./hardware-configuration.nix
# Infrastructure # Infrastructure
./backup.nix # ./backup.nix
./libvirt.nix ./libvirt.nix
./services/dyndns.nix ./services/dyndns.nix
./services/nginx.nix ./services/nginx.nix

View File

@ -15,13 +15,15 @@
fileSystems = { fileSystems = {
"/mnt/feal-syn1/backup" = { "/mnt/feal-syn1/backup" = {
device = "feal-syn1.home.feal.no:/volume2/backup"; device = "192.168.10.162:/volume2/backup";
fsType = "nfs"; fsType = "nfs";
options = [ options = [
"defaults" "defaults"
"noatime" "noatime"
"rw" "rw"
"nfsvers=3" "nfsvers=3"
"x-systemd.automount"
"noauto"
]; ];
}; };
}; };