who even knows

This commit is contained in:
iofq 2025-03-13 02:56:59 -05:00
parent d2b7eefd89
commit 470b9379f5
13 changed files with 523 additions and 248 deletions

View file

@ -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
];
};
}