Files
niphas/modules/nix.nix

23 lines
326 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"
];
};
2026-02-03 23:14:35 +01:00
programs.nix-index.enable = true;
environment.systemPackages = [
pkgs.nil
pkgs.nixfmt
pkgs.nix-prefetch-git
];
2026-02-03 22:42:31 +01:00
}