diff --git a/ops/nixos/porcorosso/default.nix b/ops/nixos/porcorosso/default.nix index 92be589980..3b06637225 100644 --- a/ops/nixos/porcorosso/default.nix +++ b/ops/nixos/porcorosso/default.nix @@ -26,6 +26,7 @@ in { "rtsx_pci_sdmmc" ]; boot.kernelModules = [ "kvm-intel" ]; + boot.supportedFilesystems = [ "ntfs" ]; fileSystems = let zfs = device: { @@ -45,6 +46,11 @@ in { device = "/dev/disk/by-label/NIXBOOT"; fsType = "vfat"; }; + "/data" = { + device = "/dev/disk/by-label/BULKDATA"; + fsType = "ntfs"; + options = [ "rw" "uid=1000" "gid=100" "dmask=077" "fmask=137" "windows_names" ]; + }; }; nix.maxJobs = lib.mkDefault 12; @@ -205,5 +211,5 @@ in { # compatible, in order to avoid breaking some software such as database # servers. You should change this only after NixOS release notes say you # should. - system.stateVersion = "19.09"; # Did you read the comment? + system.stateVersion = "20.03"; # Did you read the comment? }