change many thing

This commit is contained in:
atagen 2026-02-16 11:32:22 +11:00
parent b2d69d270e
commit fe668b5b9e
30 changed files with 632 additions and 470 deletions

View file

@ -1,12 +1,37 @@
{ pkgs, inputs, ... }:
{ inputs, ... }:
{
imports = [
inputs.nyx.nixosModules.default
inputs.bunker.nixosModules.default
];
services.system76-scheduler.enable = true;
bunker.kernel = {
enable = true;
hardened = false;
cpuArch = "MZEN3";
version = "6.18";
lto = "none";
trimmed = true;
};
services.scx = {
enable = true;
scheduler = "scx_bpfland";
};
# boot.kernelPackages = pkgs.linuxPackages_cachyos-gcc;
boot.kernelPackages = pkgs.linuxPackages_xanmod;
# nixpkgs.overlays = [
# (final: prev: {
# nvidia-open = prev.nvidia-open.override {
# patches = [
# (pkgs.fetchpatch {
# url = "https://github.com/CachyOS/CachyOS-PKGBUILDS/raw/refs/heads/master/nvidia/nvidia-utils/kernel-6.19.patch";
# hash = "";
# })
# ];
# };
# })
# ];
}