29 lines
566 B
Nix
29 lines
566 B
Nix
inputs:
|
|
let
|
|
hardware = inputs.nixos-hardware.nixosModules;
|
|
in
|
|
{
|
|
aluminium = {
|
|
targetHost = "jalr-k.duckdns.org";
|
|
system = "x86_64-linux";
|
|
};
|
|
cadmium = {
|
|
system = "x86_64-linux";
|
|
};
|
|
iron = {
|
|
system = "x86_64-linux";
|
|
#targetHost = "192.168.42.1";
|
|
targetHost = "jalr-bw.duckdns.org";
|
|
};
|
|
magnesium = {
|
|
system = "x86_64-linux";
|
|
targetHost = "magnesium.jalr.de";
|
|
};
|
|
copper = {
|
|
system = "x86_64-linux";
|
|
targetHost = "copper.lan.bw.jalr.de";
|
|
extraModules = [
|
|
hardware.framework-16-7040-amd
|
|
];
|
|
};
|
|
}
|