my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: smb nas

willow 39758cde d13dd376

+12
+12
hosts/earthy/default.nix
··· 42 42 PLATFORM_PROFILE_ON_BAT = "low-power"; 43 43 }; 44 44 }; 45 + 46 + # Samba NAS 47 + environment.systemPackages = [ pkgs.cifs-utils ]; 48 + fileSystems."/mnt/share" = { 49 + device = "//192.168.1.30/thinkpad_backup/"; 50 + fsType = "cifs"; 51 + options = let 52 + # this line prevents hanging on network split 53 + automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s"; 54 + 55 + in ["${automount_opts},credentials=/etc/nixos/smb-secrets"]; 56 + }; 45 57 }