mirror of
https://github.com/srid/nixos-config.git
synced 2026-07-16 22:01:33 +08:00
19 lines
469 B
Nix
19 lines
469 B
Nix
{ flake, pkgs, ... }:
|
|
|
|
let
|
|
inherit (flake) inputs;
|
|
in
|
|
{
|
|
imports = [
|
|
inputs.drishti.homeManagerModules.default
|
|
];
|
|
|
|
# Generic enabler. The host list is machine-specific (zest watches the
|
|
# tailnet boxes; pureintent watches its pu-managed CI fleet), so each
|
|
# consuming config sets `services.drishti.hosts`.
|
|
services.drishti = {
|
|
enable = true;
|
|
package = inputs.drishti.packages.${pkgs.stdenv.hostPlatform.system}.default;
|
|
port = 7720;
|
|
};
|
|
}
|