my system configurations ^-^
0
fork

Configure Feed

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

feat(earthy): NTFS shared media mount

willow f9243c3e 7aea8125

+9 -5
+9 -5
hosts/earthy/hardware-configuration.nix
··· 31 31 32 32 # file systems 33 33 fileSystems = { 34 - "/" = 35 - { device = "/dev/disk/by-uuid/75293ea9-4307-498d-96b7-8672bd8dcb83"; 34 + "/" = { 35 + device = "/dev/disk/by-uuid/75293ea9-4307-498d-96b7-8672bd8dcb83"; 36 36 fsType = "ext4"; 37 37 }; 38 - "/boot" = 39 - { device = "/dev/disk/by-uuid/0821-BB6D"; 38 + "/boot" = { 39 + device = "/dev/disk/by-uuid/0821-BB6D"; 40 40 fsType = "vfat"; 41 - options = [ "fmask=0077" "dmask=0077" ]; 41 + options = ["fmask=0077" "dmask=0077"]; 42 + }; 43 + "/run/media/shared" = { 44 + device = "/dev/disk/by-uuid/75293ea9-4307-498d-96b7-8672bd8dcb83"; 45 + fsType = "ntfs"; 42 46 }; 43 47 }; 44 48 swapDevices = [];