Add Tablet

This commit is contained in:
Bun 2025-03-16 00:30:10 -04:00
parent 380393b423
commit fa8299ee29
11 changed files with 150 additions and 1 deletions

View file

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