mirror of
https://codeberg.org/muon/home.git
synced 2025-12-06 08:07:45 +00:00
25 lines
414 B
Nix
25 lines
414 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
boot = {
|
|
tmp.cleanOnBoot = true;
|
|
bootspec.enable = true;
|
|
consoleLogLevel = 0;
|
|
|
|
kernelParams = [
|
|
"cgroup_no_v1=all"
|
|
"systemd.unified_cgroup_hierarchy=yes"
|
|
];
|
|
initrd.verbose = false;
|
|
|
|
loader = {
|
|
systemd-boot.enable = true;
|
|
systemd-boot.editor = false;
|
|
efi.canTouchEfiVariables = true;
|
|
timeout = 1;
|
|
};
|
|
};
|
|
}
|