This commit is contained in:
2026-02-03 22:42:31 +01:00
parent 7c63deb8e5
commit c2b6197b82
2 changed files with 15 additions and 0 deletions

14
modules/nix.nix Normal file
View File

@@ -0,0 +1,14 @@
{
pkgs,
...
}:
{
nixpkgs.config.allowUnfree = true;
nix = {
package = pkgs.nixVersions.stable;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
}