mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-19 04:18:55 +00:00
switch to grub
This commit is contained in:
parent
2c472a45a8
commit
a474aadd0c
1 changed files with 9 additions and 4 deletions
|
|
@ -19,9 +19,6 @@ in
|
|||
# /etc/nixos/cachix.nix
|
||||
];
|
||||
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
|
||||
nix.daemonCPUSchedPolicy = "idle";
|
||||
nix.daemonIOSchedClass = "idle";
|
||||
|
||||
|
|
@ -84,8 +81,16 @@ in
|
|||
swraid.enable = false;
|
||||
|
||||
initrd.systemd.enable = true;
|
||||
|
||||
loader = {
|
||||
# systemd-boot.enable = true;
|
||||
efi.canTouchEfiVariables = true;
|
||||
timeout = 0;
|
||||
grub.enable = true;
|
||||
grub.device = "nodev";
|
||||
grub.efiSupport = true;
|
||||
};
|
||||
};
|
||||
boot.loader.timeout = 0;
|
||||
|
||||
users.users.dan = {
|
||||
isNormalUser = true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue