12 lines
186 B
Nix
12 lines
186 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./gc ];
|
|
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
}
|