Files
nixos/modules/chaotic-nyx.nix
2026-06-10 18:36:32 +02:00

17 lines
222 B
Nix

{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
chaotic = {
mesa-git = {
enable = true;
fallbackSpecialisation = true;
};
};
environment.systemPackages = with pkgs; [
mesa_git
];
}