chore: apply lints

This commit is contained in:
Bloxx12 2025-07-08 13:57:04 +02:00
commit 2411c0b496
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E
16 changed files with 42 additions and 47 deletions

View file

@ -54,7 +54,7 @@ in {
efi.canTouchEfiVariables = true;
timeout = mkDefault cfg.timeout;
systemd-boot = {
enable = cfg.systemd-boot.enable;
inherit (cfg.systemd-boot) enable;
# INFO: Leaving this enabled is a security vulneratibility,
# since we can just start /bin/sh from there and get root access.
# Since I have FDE, this isn't _as_ critical, but it would still be
@ -64,7 +64,7 @@ in {
configurationLimit = 5;
};
grub = {
enable = cfg.grub.enable;
inherit (cfg.grub) enable;
efiSupport = true;
device = "nodev";
configurationLimit = 5;