1
0
forked from extern/nix-config
donovanglover-nix-config/modules/nix.nix

13 lines
195 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
nix = {
package = pkgs.nixFlakes;
settings = {
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
auto-optimise-store = true;
};
};
}