15 lines
204 B
Nix
15 lines
204 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
nix = {
|
||
|
settings = {
|
||
|
experimental-features = [
|
||
|
"nix-command"
|
||
|
"flakes"
|
||
|
];
|
||
|
auto-optimise-store = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
nixpkgs.config.allowUnfree = true;
|
||
|
}
|