Update files

This commit is contained in:
2026-06-28 15:47:18 +01:00
parent ab45d41e8e
commit c10737da06
5 changed files with 71 additions and 50 deletions
+4 -41
View File
@@ -1,47 +1,10 @@
{ pkgs, ... }:
{ pkgs, hostname, ... }:
{
# Ensure NFS support is installed
environment.systemPackages = [ pkgs.nfs-utils ];
fileSystems = {
"/home/chris/Stardust" = {
device = "192.168.2.158:/mnt/tower/stardust/chris/files";
fsType = "nfs4";
options = [
"defaults"
"x-systemd.mount-timeout=5"
"user"
"exec"
"x-systemd.automount" # Mounts on access
"noauto" # Doesn't block boot if server is down
];
};
"/home/chris/Foundry" = {
device = "192.168.2.158:/mnt/tower/foundry/Data";
fsType = "nfs4";
options = [
"defaults"
"x-systemd.mount-timeout=5"
"user"
"exec"
"x-systemd.automount"
"noauto"
];
};
"/home/chris/Games" = {
device = "/dev/disk/by-label/Games";
fsType = "ext4";
options = [
"defaults"
"x-systemd.mount-timeout=5"
"user"
"exec"
"x-systemd.automount"
"noauto"
];
};
};
imports = [
./${hostname}-mounts.nix
];
}