Initial import

This commit is contained in:
2026-06-10 18:36:32 +02:00
commit 41ff233f31
11 changed files with 321 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{ pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
chaotic = {
mesa-git = {
enable = true;
fallbackSpecialisation = true;
};
};
environment.systemPackages = with pkgs; [
mesa_git
];
}