my system configurations ^-^
0
fork

Configure Feed

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

refactor: filesystem mounts

willow ad6e8617 3cb5fd9a

+7 -2
+1 -1
hosts/earthy/default.nix
··· 15 15 16 16 # samba 17 17 environment.systemPackages = [pkgs.cifs-utils]; 18 - fileSystems."/mnt/share" = { 18 + fileSystems."/mnt/nas" = { 19 19 device = "//192.168.1.30/thinkpad_backup/"; 20 20 fsType = "cifs"; 21 21 options = let
+5
hosts/earthy/hardware-configuration.nix
··· 40 40 fsType = "vfat"; 41 41 options = ["fmask=0077" "dmask=0077"]; 42 42 }; 43 + "/mnt/shared" = { 44 + device = "/dev/nvme0n1p5"; 45 + fsType = "ntfs"; 46 + options = ["rw"]; 47 + }; 43 48 }; 44 49 swapDevices = []; 45 50
+1 -1
modules/nixos/services/restic.nix
··· 31 31 "/home/willow/git" 32 32 "/home/willow/media" 33 33 ]; 34 - repository = "/mnt/share/restic"; 34 + repository = "/mnt/nas/restic"; 35 35 timerConfig = { 36 36 OnCalendar = "daily"; 37 37 Persistent = true;