Compare commits

..

2 commits

Author SHA1 Message Date
3bdb7539b5 Archie: add mountpoint for windows partition 2023-09-09 21:31:28 +02:00
e3577910d1 Common: enable nfs support 2023-09-09 20:59:33 +02:00
2 changed files with 8 additions and 0 deletions

View file

@ -50,6 +50,12 @@
fsType = config.fileSystems."/".fsType;
options = [ "subvolid=5" "ro" ];
};
"/mnt/windows" = {
device = "/dev/disk/by-uuid/B61AFDAC1AFD6A2F";
fsType = "ntfs3";
neededForBoot = false;
options = [ "noauto" "windows_names" ];
};
"/home" = {
device = "/dev/disk/by-uuid/5322c217-b87b-4150-8b4c-a8fa17a899bf";
fsType = "btrfs";

View file

@ -30,6 +30,8 @@
useXkbConfig = true;
};
boot.supportedFilesystems = [ "nfs" ];
# Set up localisation
i18n = {
defaultLocale = "en_US.UTF-8";