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