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 = [ imports = [
../../system/amd.nix
../../system/boot.nix ../../system/boot.nix
../../system/amd.nix
../../system/hardware.nix ../../system/hardware.nix
../../system/home-manager.nix ../../system/home-manager.nix
../../system/services.nix ../../system/services.nix
+11 -5
View File
@@ -4,14 +4,20 @@
systemd-boot = { systemd-boot = {
enable = true; enable = true;
}; };
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
enable = false;
device = "nodev";
};
}; };
initrd = { initrd = {
systemd.enable = true; systemd.enable = true;
}; };
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub.enable = false;
}; };
} }