summary refs log tree commit diff
path: root/fleet/hosts
diff options
context:
space:
mode:
authoredef <edef@unfathomable.blue>2022-06-20 09:24:29 +0000
committeredef <edef@unfathomable.blue>2022-06-20 11:00:00 +0000
commit371541b4c480ba2400cf6b5a3ef380eee9cc48bb (patch)
treedfa0f857f34b6adbf8db35bbaee5b10e5f13675e /fleet/hosts
parentbc967bb90e50bf151de7e9c91a6111e4b1d8746a (diff)
fleet/pkgs/naut: simplify down to a single channel and a single repo
We have a single repository (the monorepo), and a single project
channel worth reporting to (Ripple's).

Change-Id: I17d84b610639d7eed422d6a7032908d21143a582
Diffstat (limited to 'fleet/hosts')
-rw-r--r--fleet/hosts/trieste/naut.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/fleet/hosts/trieste/naut.nix b/fleet/hosts/trieste/naut.nix
index 8b94492..5b219ac 100644
--- a/fleet/hosts/trieste/naut.nix
+++ b/fleet/hosts/trieste/naut.nix
@@ -6,10 +6,6 @@
 let
   socket = "/run/naut/naut.sock";
   proxySocket = "/run/naut-proxy/naut.sock";
-
-  config = {
-    "#ripple" = [ "ripple" "ripple-website" ];
-  };
 in {
   systemd.sockets.naut-proxy = {
     wantedBy = [ "sockets.target" ];
@@ -26,7 +22,6 @@ in {
     wantedBy = [ "multi-user.target" ];
 
     environment.NAUT_SOCK = socket;
-    environment.NAUT_CONFIG = (pkgs.formats.toml {}).generate "naut.toml" config;
 
     serviceConfig = {
       ExecStart = "${pkgs.naut}/bin/naut";
@@ -42,7 +37,6 @@ in {
   declarative.git.hooks.post-receive = [
     (pkgs.writeShellScript "nautify" ''
       {
-        pwd
         cat
       } | nc -UN ${proxySocket}
     '')