24 lines
No EOL
541 B
Nix
24 lines
No EOL
541 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./modules
|
|
];
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
|
|
substituters = [
|
|
"https://colmena.cachix.org"
|
|
];
|
|
trusted-public-keys = [
|
|
"colmena.cachix.org-1:7BzpDnjjH8ki2CT3f6GdOk7QAzPOl+1t3LvTLXqYcSg="
|
|
];
|
|
|
|
auto-optimise-store = true;
|
|
};
|
|
nix.gc.automatic = true;
|
|
} |