mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 06:56:12 +01:00
22 lines
293 B
Nix
22 lines
293 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
boot = {
|
|
tmp.cleanOnBoot = true;
|
|
|
|
loader = {
|
|
timeout = 1;
|
|
efi.canTouchEfiVariables = true;
|
|
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
};
|
|
|
|
kernelPackages = pkgs.linuxPackages_zen;
|
|
};
|
|
}
|