who even knows
This commit is contained in:
parent
d2b7eefd89
commit
470b9379f5
13 changed files with 523 additions and 248 deletions
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
pkgs-stable,
|
||||
attrs,
|
||||
system,
|
||||
...
|
||||
|
|
@ -12,8 +11,9 @@
|
|||
];
|
||||
in {
|
||||
t14 = inputs.nixpkgs.lib.nixosSystem {
|
||||
inherit pkgs;
|
||||
specialArgs = {
|
||||
inherit inputs system pkgs attrs;
|
||||
inherit inputs system attrs;
|
||||
host = {
|
||||
hostName = "t14";
|
||||
inherit (attrs) username;
|
||||
|
|
@ -28,8 +28,9 @@ in {
|
|||
];
|
||||
};
|
||||
consensus = inputs.nixpkgs.lib.nixosSystem {
|
||||
inherit pkgs;
|
||||
specialArgs = {
|
||||
inherit inputs system pkgs attrs;
|
||||
inherit inputs system attrs;
|
||||
host = {
|
||||
hostName = "consensus";
|
||||
inherit (attrs) username;
|
||||
|
|
@ -42,20 +43,4 @@ in {
|
|||
./consensus/configuration.nix
|
||||
];
|
||||
};
|
||||
nc = inputs.nixpkgs-stable.lib.nixosSystem {
|
||||
specialArgs = {
|
||||
pkgs = pkgs-stable;
|
||||
inherit inputs system attrs;
|
||||
host = {
|
||||
hostName = "nc";
|
||||
inherit (attrs) username;
|
||||
};
|
||||
};
|
||||
modules =
|
||||
defaultModules
|
||||
++ [
|
||||
./configuration.nix
|
||||
./nc/configuration.nix
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue