Add initial support for grub
This commit is contained in:
parent
865afe8ab3
commit
b0074a081a
8 changed files with 16 additions and 13 deletions
|
@ -12,7 +12,6 @@
|
|||
(builtins.readFile ../../../../../hosts/lacros/id_ed25519.pub)
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJahAoF74BY6GCTsFkt1ADKaraFgJJozW1Y1aBTLK0j9 pixel9"
|
||||
];
|
||||
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"audio"
|
||||
|
|
9
modules/system/devices/boot/grub/efi/default.nix
Normal file
9
modules/system/devices/boot/grub/efi/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
device = "nodev";
|
||||
};
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
capslock = "overload(control, esc)";
|
||||
esc = "capslock";
|
||||
control = "f14";
|
||||
scrolllock = "esc";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue