Reformatting

This commit is contained in:
Greg Hellings
2025-11-02 22:44:01 -06:00
parent 2239dbeb45
commit 5e55c31019
2 changed files with 36 additions and 27 deletions
+9 -2
View File
@@ -88,7 +88,13 @@ in
}; };
}; };
}; };
ssh.matchBlocks = lib.listToAttrs (lib.map (key: { name = "${key}.ivrtechnology.com"; value = {}; }) [ ssh.matchBlocks = lib.listToAttrs (
lib.map
(key: {
name = "${key}.ivrtechnology.com";
value = { };
})
[
"apidev1" "apidev1"
"asdev1" "asdev1"
"agidev1" "agidev1"
@@ -99,7 +105,8 @@ in
"webdev5" "webdev5"
"web4" "web4"
]); ]
);
tmux.shell = (lib.getExe x); tmux.shell = (lib.getExe x);
}; };
} }
+4 -2
View File
@@ -32,7 +32,8 @@
vulkan-tools vulkan-tools
]; ];
systemd.mounts = let systemd.mounts =
let
nfs = name: { nfs = name: {
what = "nas1.shire-zebra.ts.net:/mnt/all/${name}"; what = "nas1.shire-zebra.ts.net:/mnt/all/${name}";
type = "nfs"; type = "nfs";
@@ -43,7 +44,8 @@
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
mountConfig.Options = "_netdev,noexec,ro,timeo=50,retrans=5,soft"; mountConfig.Options = "_netdev,noexec,ro,timeo=50,retrans=5,soft";
}; };
in [ in
[
(nfs "music") (nfs "music")
(nfs "photos") (nfs "photos")
(nfs "video") (nfs "video")