mirror of
https://github.com/srid/nixos-config.git
synced 2026-05-01 19:35:40 +08:00
* Add kolu home service for pureintent Depends on https://github.com/juspay/kolu/pull/21 * Update kolu input to main (PR merged)
17 lines
329 B
Nix
17 lines
329 B
Nix
{ 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;
|
|
};
|
|
}
|