2024-10-14 18:35:04 -04:00
|
|
|
{ ... }:
|
|
|
|
|
|
2024-10-14 17:28:31 -04:00
|
|
|
{
|
2024-10-14 18:35:04 -04:00
|
|
|
fileSystems."/mnt/share/Music" = {
|
|
|
|
|
device = "//nas.local/Music";
|
|
|
|
|
fsType = "cifs";
|
|
|
|
|
options = let
|
|
|
|
|
automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
|
|
|
|
|
in ["${automount_opts},credentials=/etc/nixos/smb-secrets,uid=1000,gid=100"];
|
|
|
|
|
};
|
2025-04-09 20:56:29 -04:00
|
|
|
|
2025-06-16 14:00:25 -04:00
|
|
|
fileSystems."/mnt/share/Backupsups" = {
|
|
|
|
|
device = "//nas.local/Backups";
|
|
|
|
|
fsType = "cifs";
|
|
|
|
|
options = let
|
|
|
|
|
automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s";
|
|
|
|
|
in ["${automount_opts},credentials=/etc/nixos/smb-secrets,uid=1000,gid=100"];
|
|
|
|
|
};
|
2024-10-14 17:28:31 -04:00
|
|
|
}
|