Fix: Init placeholder boot.nix for fighter until we can generate a hardware config.

This commit is contained in:
Joey Hafner 2025-01-31 12:40:39 -08:00
parent a12f7c5024
commit 6dc3053449
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55

View File

@ -0,0 +1,15 @@
{ ... }: {
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/placeholder";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/placeholder";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
};
boot.loader.systemd-boot.enable = true;
}