feat(deertopia): Mount NAS

This commit is contained in:
Madeleine Sydney
2025-04-01 06:11:04 -06:00
parent ea4cad45d0
commit 45a66fe1ab
3 changed files with 17 additions and 2 deletions

View File

@@ -65,6 +65,19 @@
};
};
sydnix.sops.secrets.buffalo-nas-creds = {};
fileSystems."/nas/media" = {
# DNS is seemingly unavailable to the mount service.
device = "//192.168.68.62/media";
mountPoint = "/nas/media";
fsType = "cifs";
options = [
"vers=2.0"
"cred=/run/secrets/buffalo-nas-creds"
];
};
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;