my system configurations ^-^
0
fork

Configure Feed

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

style: format

willow 6698264f 71b2b5fa

+6 -4
+1 -2
hosts/earthy/default.nix
··· 50 50 }; 51 51 52 52 # Samba NAS 53 - environment.systemPackages = [ pkgs.cifs-utils ]; 53 + environment.systemPackages = [pkgs.cifs-utils]; 54 54 fileSystems."/mnt/share" = { 55 55 device = "//192.168.1.30/thinkpad_backup/"; 56 56 fsType = "cifs"; 57 57 options = let 58 58 # this line prevents hanging on network split 59 59 automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s"; 60 - 61 60 in ["${automount_opts},credentials=/etc/nixos/smb-secrets"]; 62 61 }; 63 62 }
+5 -2
hosts/lily/default.nix
··· 1 - { pkgs, modulesPath, inputs, ... }: 2 - 3 1 { 2 + pkgs, 3 + modulesPath, 4 + inputs, 5 + ... 6 + }: { 4 7 imports = [ 5 8 "${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix" 6 9 ];