Files
niphas/modules/nix.nix
2026-02-03 22:42:31 +01:00

15 lines
195 B
Nix

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