mirror of
https://github.com/danbulant/dotfiles
synced 2026-05-24 12:35:34 +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
|
# /etc/nixos/cachix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.loader.systemd-boot.enable = true;
|
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
|
||||||
|
|
||||||
nix.daemonCPUSchedPolicy = "idle";
|
nix.daemonCPUSchedPolicy = "idle";
|
||||||
nix.daemonIOSchedClass = "idle";
|
nix.daemonIOSchedClass = "idle";
|
||||||
|
|
||||||
|
|
@ -84,8 +81,16 @@ in
|
||||||
swraid.enable = false;
|
swraid.enable = false;
|
||||||
|
|
||||||
initrd.systemd.enable = true;
|
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 = {
|
users.users.dan = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue