simplified namespace cause I dont wanna type that much and introduce colored man pages

This commit is contained in:
Christoph Hollizeck 2024-09-13 02:05:40 +02:00
parent fdbb3a8f3b
commit 70fdb9173a
Signed by: Daholli
GPG key ID: 249300664F2AF2C7
15 changed files with 54 additions and 126 deletions

View file

@ -15,9 +15,13 @@ in
};
config = mkIf cfg.enable {
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
};
services.fstrim = enabled;
};