2024-11-05 08:11:22 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
nixos-config,
|
2024-11-05 12:49:12 +00:00
|
|
|
lib,
|
2024-11-05 08:11:22 +00:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
networking.hostName = "pc-installer";
|
|
|
|
imports = [
|
|
|
|
"${nixos-config}/config"
|
|
|
|
./disko.nix
|
|
|
|
./grub.nix
|
2024-11-05 09:18:46 +00:00
|
|
|
./hardware.nix
|
2024-11-05 12:13:06 +00:00
|
|
|
"${nixos-config}/config/networkmanager.nix"
|
2024-11-05 08:11:22 +00:00
|
|
|
];
|
|
|
|
system.stateVersion = config.system.nixos.version;
|
|
|
|
specialisation.graphical = {
|
|
|
|
configuration.imports = [
|
|
|
|
./graphical.nix
|
|
|
|
];
|
|
|
|
};
|
2024-11-05 12:49:12 +00:00
|
|
|
nix.settings.substituters = lib.mkForce [
|
|
|
|
"https://attic.chir.rs/chir-rs/"
|
|
|
|
"https://hydra.chir.rs"
|
|
|
|
"https://cache.nixos.org"
|
|
|
|
];
|
2024-11-05 08:11:22 +00:00
|
|
|
}
|