feat: set up colmena with hetzner stuff

This commit is contained in:
2026-01-22 20:18:17 +01:00
parent 600e55de1f
commit 0f369bdf6c
10 changed files with 175 additions and 5 deletions

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