summaryrefslogtreecommitdiff
path: root/hosts/profiles.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-05-21 13:46:36 -0400
committerseth <[email protected]>2023-05-21 13:46:36 -0400
commitc6b38fd8f0e5908e5593d33e66cae8980f560c1b (patch)
treecaee5d2585b0e62c3dc26f4bd324ea6cd49aadfe /hosts/profiles.nix
parented52175975f8f448cd66372c5ff8d3e900fc1541 (diff)
move monitoring setup to modules
Diffstat (limited to 'hosts/profiles.nix')
-rw-r--r--hosts/profiles.nix9
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;
}
];