51 lines
1.1 KiB
Nix
51 lines
1.1 KiB
Nix
{ inputs, pkgs, attrs, system, ... }: {
|
|
t14 = inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs system pkgs;
|
|
host = {
|
|
hostName = "t14";
|
|
username = attrs.username;
|
|
};
|
|
};
|
|
modules = [
|
|
./configuration.nix
|
|
./t14/configuration.nix
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t14-amd-gen1
|
|
];
|
|
};
|
|
rknrd = inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs system pkgs;
|
|
host = {
|
|
hostName = "rknrd";
|
|
username = attrs.username;
|
|
};
|
|
};
|
|
modules = [
|
|
./configuration.nix
|
|
./racknerd/configuration.nix
|
|
];
|
|
};
|
|
htz = inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {
|
|
inherit inputs system pkgs;
|
|
addressList = {
|
|
vm-test = {
|
|
ipv4 = "10.0.0.2";
|
|
subnet = "/24";
|
|
mac = "02:00:00:00:00:01";
|
|
};
|
|
};
|
|
host = {
|
|
hostName = "htz";
|
|
username = attrs.username;
|
|
};
|
|
};
|
|
modules = [
|
|
./configuration.nix
|
|
./htz/configuration.nix
|
|
inputs.ethereum-nix.nixosModules.default
|
|
inputs.microvm.nixosModules.host
|
|
];
|
|
};
|
|
}
|