New node as build machine

This commit is contained in:
pazpi 2025-01-12 22:28:11 +01:00
parent a1bc147b90
commit 3542814aa2
4 changed files with 51 additions and 1 deletions

28
hosts/colmena/default.nix Normal file
View file

@ -0,0 +1,28 @@
{
config,
pkgs,
lib,
...
}:
{
my = {
utils = {
commons.enable = true;
lxc-standard.enable = true;
};
virtualisation.proxmox.enable = true;
};
# Extra packages
environment.systemPackages = with pkgs; [
git
just
];
# For VSCode Remote Development
programs.nix-ld.enable = true;
system.stateVersion = "24.11";
}

View file

@ -38,7 +38,7 @@ let
];
};
myModule = {
myModules = {
imports = [
lix-module.nixosModules.default
authentik-nix.nixosModules.default
@ -167,4 +167,15 @@ in
# specialArgs = { };
};
colmena = nixpkgs.lib.nixosSystem {
pkgs = pkgs "x86_64-linux";
modules = [
myModules
proxmoxModule
./colmena
agenix.nixosModules.default
];
# specialArgs = { };
};
}