Merge pull request #7 from ragusa-it/claude/add-chaotic-nyx-cachyos-o0LDX

add: chaotic-nyx with CachyOS kernel
This commit was merged in pull request #7.
This commit is contained in:
Melvin Ragusa
2026-02-02 16:14:45 +01:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -27,7 +27,8 @@
# ═══════════════════════════════════════════════════════════════ # ═══════════════════════════════════════════════════════════════
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelPackages = pkgs.linuxPackages_cachyos;
chaotic.scx.enable = true; # Enable sched-ext schedulers for CachyOS
# ═══════════════════════════════════════════════════════════════ # ═══════════════════════════════════════════════════════════════
# NETWORKING # NETWORKING

View File

@@ -27,6 +27,8 @@
url = "github:vicinaehq/vicinae"; url = "github:vicinaehq/vicinae";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
}; };
# Binary caches for faster builds # Binary caches for faster builds
@@ -49,7 +51,10 @@
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ ./configuration.nix ]; modules = [
./configuration.nix
inputs.chaotic.nixosModules.default
];
}; };
}; };
} }