forked from extern/nix-config
13 lines
195 B
Nix
13 lines
195 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
nix = {
|
||
|
package = pkgs.nixFlakes;
|
||
|
|
||
|
settings = {
|
||
|
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
|
||
|
auto-optimise-store = true;
|
||
|
};
|
||
|
};
|
||
|
}
|