diff options
Diffstat (limited to 'nixos/hosts/ev/hosehawk.nix')
-rw-r--r-- | nixos/hosts/ev/hosehawk.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/nixos/hosts/ev/hosehawk.nix b/nixos/hosts/ev/hosehawk.nix new file mode 100644 index 0000000..27db394 --- /dev/null +++ b/nixos/hosts/ev/hosehawk.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + imports = [ + /srv/unstable/hosehawk/services/hosenest.nix + /srv/unstable/hosehawk/services/hosehawk.nix + ]; + + services.hosenest.enable = true; + services.hosehawk = { + enable = true; + hosenestUrl = "http://localhost:${toString config.services.hosenest.port}/api"; + }; +} |