Filesystems: Unify local NAS mounting for all hosts

This commit is contained in:
2026-06-18 16:04:42 +02:00
parent 61f4e15fb2
commit 7fc9d10092
4 changed files with 3 additions and 17 deletions
@@ -1,16 +0,0 @@
{ inputs, ... }: {
flake.modules.nixos.keith = { config, ... }: {
age.secrets."nas-creds".file = "${inputs.secrets}/nas-creds.age";
imports = with inputs.self.factory; [
(mount-cifs {
host = "duke.veltnet";
resource = "smb-share";
destination = "/mnt/duke";
credentials_path = "${config.age.secrets.nas-creds.path}";
UID = "weckyy702";
GID = "users";
})
];
};
}