Change external to ISO, the most likely way I'll use it

This commit is contained in:
Jimbo 2025-02-24 21:02:14 -05:00
parent e221d22463
commit d2769c314a
11 changed files with 37 additions and 147 deletions

View file

@ -0,0 +1,11 @@
{ config, ... }:
{
fileSystems = {
# Network mounts
"/home/${config.sysusers.main}/KittyNFS" = {
device = "10.100.0.1:/export/KittyNFS";
fsType = "nfs4";
options = [ "x-systemd.automount" "_netdev" "nofail" "noauto" ];
};
};
}