Skip to content

Commit

Permalink
add uefi support to server init
Browse files Browse the repository at this point in the history
  • Loading branch information
orzklv committed Jun 9, 2024
1 parent ee2c289 commit 172d3c8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion robot.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
./disk-config.nix
];

boot.loader.grub.enable = true;
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
efiSupport = true;
};
};

services.openssh = {
enable = true;
Expand Down

0 comments on commit 172d3c8

Please sign in to comment.