added BOOT

This commit is contained in:
biscuit
2025-06-30 13:08:05 -05:00
parent 4271d20f44
commit 080f4ec678
2 changed files with 15 additions and 0 deletions
+1
View File
@@ -8,5 +8,6 @@
../system/services.nix
../system/tty.nix
../system/firewall.nix
../system/boot.nix
];
}
+14
View File
@@ -0,0 +1,14 @@
{...}: {
boot.loader = {
systemd-boot = {
enable = false;
};
efi = {
canTouchEfiVariables = true;
};
grub = {
enable = true;
device = "nodev";
};
};
}