nyarlathtop #14

Merged
nerf merged 8 commits from nerf/nixConfig:nyarlathtop into nyarlathtop 2023-10-01 10:40:03 +00:00
Showing only changes of commit 08f06f3a92 - Show all commits

View file

@ -2,8 +2,23 @@
imports = [ ]; imports = [ ];
fileSystems."/" = { fileSystems."/" = {
device = "nya-root";
fsType = "tmpfs";
};
fileSystems."/persist" = {
device = "/dev/disk/by-uuid/a72da670-f631-49b1-bcb3-6d378cc1f2d0"; device = "/dev/disk/by-uuid/a72da670-f631-49b1-bcb3-6d378cc1f2d0";
fsType = "ext4"; fsType = "ext4";
neededForBoot = true;
};
fileSystems."/boot" = {
device = "/persist/boot";
fsType = "none";
options = [ "bind" ];
};
fileSystems."/nix" = {
device = "/persist/nix";
fsType = "none";
options = [ "bind" ];
}; };
fileSystems."/var/vmail" = { fileSystems."/var/vmail" = {
device = "/dev/disk/by-uuid/23c44c93-5035-4e29-9e46-75c1c08f4cea"; device = "/dev/disk/by-uuid/23c44c93-5035-4e29-9e46-75c1c08f4cea";