This commit is contained in:
joygnu 2024-08-05 19:42:24 +02:00
parent 67c6347803
commit b1b53ceef3
2 changed files with 14 additions and 9 deletions

View file

@ -6,16 +6,14 @@
networking.networkmanager.enable = true;
boot.loader = {
timeout = 0;
efi = {
canTouchEfiVariables = false;
};
grub = {
timeout = 0;
efi.canTouchEfiVariables = false;
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
};
imports = [
../../modules

View file

@ -2,10 +2,17 @@
{
networking.hostName = "laptop";
networking.networkmanager.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.timeout = 5;
boot.loader = {
timeout = 0;
efi.canTouchEfiVariables = false;
grub = {
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
};
imports = [
../../modules
./hardware.nix