Add kolu home service for pureintent (#111)

* Add kolu home service for pureintent

Depends on https://github.com/juspay/kolu/pull/21

* Update kolu input to main (PR merged)
This commit is contained in:
Sridhar Ratnakumar 2026-03-21 20:17:57 -04:00 committed by GitHub
parent 482c513fbd
commit 219f17d8ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 154 additions and 17 deletions

View file

@ -0,0 +1,17 @@
{ flake, config, pkgs, ... }:
let
inherit (flake) inputs;
in
{
imports = [
inputs.kolu.homeManagerModules.default
];
services.kolu = {
enable = true;
package = inputs.kolu.packages.${pkgs.stdenv.hostPlatform.system}.default;
host = "100.122.32.106"; # Tailscale IP of pureintent
port = 7681;
};
}