This commit is contained in:
mjallen18
2025-07-23 09:50:11 -05:00
parent f8e80bd44c
commit 1bc7856d93
14 changed files with 105 additions and 88 deletions

View File

@@ -1,7 +1,5 @@
{ config, pkgs, namespace, ... }:
{ config, pkgs, ... }:
let
configLimit = 5;
# default = "@saved";
kernel = pkgs.linuxPackages_cachyos;
pkgsVersion = pkgs; #.unstable;
in
@@ -36,14 +34,9 @@ in
];
};
plymouth = {
enable = true;
};
kernelPackages = kernel;
kernelParams = [
"quiet"
# needed cause ssd powersaving is broken af I guess
"nvme_core.default_ps_max_latency_us=0"
"pcie_aspm=off"
@@ -53,8 +46,6 @@ in
bootspec.enable = true;
};
zramSwap.enable = true;
environment.systemPackages = with pkgsVersion; [
edk2-uefi-shell
];