diff --git a/configuration.nix b/configuration.nix index 441ab89..0e4f6d2 100644 --- a/configuration.nix +++ b/configuration.nix @@ -22,6 +22,14 @@ useOSProber = true; }; + # Disks + + fileSystems."/mnt/storage" = { + device = "/dev/disk/by-uuid/C4E29B73E29B6906"; + fsType = "ntfs-3g"; + options = [ "nosuid" "nodev" "nodev" "uid=1000" ]; + }; + # Use latest kernel. boot.kernelPackages = pkgs.linuxPackages_latest;