feat(oracle): fix boot

This commit is contained in:
Kat Inskip 2024-08-28 14:20:31 -07:00
parent e8b1f901e3
commit 47f0a180fe
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
2 changed files with 11 additions and 10 deletions

View file

@ -16,15 +16,15 @@
kernelModules = ["nvme"]; kernelModules = ["nvme"];
}; };
}; };
fileSystems = { };
"/boot" = { fileSystems = {
device = "/dev/disk/by-uuid/1F52-C11D"; "/boot" = {
fsType = "vfat"; device = "/dev/disk/by-uuid/1F52-C11D";
}; fsType = "vfat";
"/" = { };
device = "/dev/sda1"; "/" = {
fsType = "ext4"; device = "/dev/sda1";
}; fsType = "ext4";
}; };
}; };
} }

View file

@ -34,7 +34,8 @@ in
nixosConfigurations = {}; nixosConfigurations = {};
homeConfigurations = {}; homeConfigurations = {};
darwinConfigurations = {}; darwinConfigurations = {};
} // { }
// {
systems = hostConfigs; systems = hostConfigs;
} }
// set.merge (set.mapToValues processHost hostConfigs) // set.merge (set.mapToValues processHost hostConfigs)