Files
niphas/modules/nix.nix

15 lines
195 B
Nix
Raw Normal View History

2026-02-03 22:42:31 +01:00
{
pkgs,
...
}:
{
nixpkgs.config.allowUnfree = true;
nix = {
package = pkgs.nixVersions.stable;
settings.experimental-features = [
"nix-command"
"flakes"
];
};
}