nix/hosts/laptop/default.nix

24 lines
541 B
Nix
Raw Normal View History

2024-12-02 03:57:34 -07:00
{ 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;
2024-12-02 03:57:34 -07:00
}