Fix: Init placeholder boot.nix for fighter until we can generate a hardware config.
This commit is contained in:
parent
a12f7c5024
commit
6dc3053449
15
dotfiles/systems/fighter/boot.nix
Normal file
15
dotfiles/systems/fighter/boot.nix
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user