diff options
| author | seth <[email protected]> | 2023-05-21 13:46:36 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-21 13:46:36 -0400 |
| commit | c6b38fd8f0e5908e5593d33e66cae8980f560c1b (patch) | |
| tree | caee5d2585b0e62c3dc26f4bd324ea6cd49aadfe /hosts/profiles.nix | |
| parent | ed52175975f8f448cd66372c5ff8d3e900fc1541 (diff) | |
move monitoring setup to modules
Diffstat (limited to 'hosts/profiles.nix')
| -rw-r--r-- | hosts/profiles.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/hosts/profiles.nix b/hosts/profiles.nix index d565840..614933e 100644 --- a/hosts/profiles.nix +++ b/hosts/profiles.nix @@ -73,8 +73,13 @@ in { ../modules/nixos/features/tailscale.nix { - getchoo.features.tailscale.enable = true; - getchoo.server.enable = true; + getchoo = { + features.tailscale.enable = true; + server = { + enable = true; + services.promtail.enable = true; + }; + }; nix.registry.nixpkgs.flake = nixpkgs; } ]; |
