This commit is contained in:
Hadi
2024-08-19 00:38:27 +02:00
parent 31ac58592e
commit 849eb5dd11
14 changed files with 78 additions and 82 deletions

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }: {
boot = {
loader.efi.canTouchEfiVariables = true;
loader.systemd-boot = {
enable = true;
consoleMode = "auto";
};
tmp.cleanOnBoot = true;
kernelPackages =
pkgs.linuxPackages_latest; # _zen, _hardened, _rt, _rt_latest, etc.
};
}