This commit is contained in:
kenji
2025-12-23 12:22:32 -06:00
parent f155563ca0
commit 73b5b2c9f6
2 changed files with 12 additions and 6 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{...}: {
imports = [
../../system/amd.nix
../../system/boot.nix
../../system/amd.nix
../../system/hardware.nix
../../system/home-manager.nix
../../system/services.nix
+11 -5
View File
@@ -4,14 +4,20 @@
systemd-boot = {
enable = true;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
enable = false;
device = "nodev";
};
};
initrd = {
systemd.enable = true;
};
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub.enable = false;
};
}