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";
}