mirror of
https://github.com/srid/nixos-config.git
synced 2026-07-16 22:01:33 +08:00
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:
parent
482c513fbd
commit
219f17d8ba
4 changed files with 154 additions and 17 deletions
17
modules/home/services/kolu.nix
Normal file
17
modules/home/services/kolu.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue