feat: set up colmena with hetzner stuff

This commit is contained in:
2026-03-11 21:25:32 +01:00
committed by hektor
parent 934cbff81d
commit c0885dc6ca
10 changed files with 175 additions and 5 deletions
+12
View File
@@ -34,6 +34,10 @@
url = "path:./dots/.config/nvim";
inputs.nixpkgs.follows = "nixpkgs";
};
colmena = {
url = "github:zhaofengli/colmena";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@@ -48,6 +52,7 @@
nixgl,
firefox-addons,
nvim,
colmena,
}@inputs:
let
inherit (self) outputs;
@@ -82,5 +87,12 @@
};
};
};
colmenaHive = import ./deploy/colmena.nix {
inherit
self
inputs
;
};
};
}