2024-12-02 03:57:34 -07:00
|
|
|
{ inputs, ... }:
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
./modules
|
|
|
|
];
|
|
|
|
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
|
|
|
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
2024-12-12 15:33:50 -07:00
|
|
|
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;
|
2024-12-02 03:57:34 -07:00
|
|
|
}
|