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

View File

@@ -29,6 +29,7 @@
git = modules/git.nix; git = modules/git.nix;
udiskie = modules/udiskie.nix; udiskie = modules/udiskie.nix;
niri = modules/niri; niri = modules/niri;
nix = modules/nix.nix;
tools = modules/tool.nix; tools = modules/tool.nix;
}; };

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"
];
};
}