feat(homelab): start implementing route generation

This commit is contained in:
2025-12-28 01:58:34 -08:00
parent d1b81ce0db
commit 0993820675
16 changed files with 879 additions and 49 deletions

View File

@@ -20,6 +20,16 @@
architecture = "x86_64-linux";
}
];
systems = [ "x86_64-linux" ];
forAllSystems =
f:
nixpkgs.lib.genAttrs systems (
system:
f {
inherit system;
pkgs = nixpkgs.legacyPackages.${system};
}
);
in
{
nixosConfigurations = builtins.listToAttrs (
@@ -49,5 +59,16 @@
};
}) nodes
);
devShells = forAllSystems (
{ system, pkgs }:
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
openssl
pkgconf
];
};
}
);
};
}