Rename modules auto-cpufreq and boot-loader

This commit is contained in:
SebastianStork 2024-03-15 09:42:06 +01:00
parent e50ba91241
commit bb1a8c5b44
4 changed files with 8 additions and 8 deletions

View file

@ -1,20 +0,0 @@
{
config,
lib,
...
}: {
options.myConfig.boot.systemd.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.boot.systemd.enable {
boot.tmp.cleanOnBoot = true;
boot.loader = {
systemd-boot = {
enable = true;
editor = false;
configurationLimit = 50;
};
efi.canTouchEfiVariables = true;
timeout = 3;
};
};
}