Add MacBook

This commit is contained in:
Bun 2025-03-08 05:36:01 -05:00
parent b3310802cb
commit 1b9bbe397e
12 changed files with 169 additions and 7 deletions

View file

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