diff options
Diffstat (limited to 'ops')
-rw-r--r-- | ops/machines/whitby/default.nix | 40 | ||||
-rw-r--r-- | ops/modules/www/wigglydonke.rs.nix | 2 | ||||
-rw-r--r-- | ops/nixos.nix | 2 |
3 files changed, 22 insertions, 22 deletions
diff --git a/ops/machines/whitby/default.nix b/ops/machines/whitby/default.nix index df280b96f7c1..554caa66427a 100644 --- a/ops/machines/whitby/default.nix +++ b/ops/machines/whitby/default.nix @@ -6,26 +6,26 @@ let inherit (lib) range; in lib.fix(self: { imports = [ - "${depot.depotPath}/ops/modules/clbot.nix" - "${depot.depotPath}/ops/modules/irccat.nix" - "${depot.depotPath}/ops/modules/monorepo-gerrit.nix" - "${depot.depotPath}/ops/modules/panettone.nix" - "${depot.depotPath}/ops/modules/paroxysm.nix" - "${depot.depotPath}/ops/modules/smtprelay.nix" - "${depot.depotPath}/ops/modules/sourcegraph.nix" - "${depot.depotPath}/ops/modules/tvl-buildkite.nix" - "${depot.depotPath}/ops/modules/tvl-slapd/default.nix" - "${depot.depotPath}/ops/modules/tvl-sso/default.nix" - "${depot.depotPath}/ops/modules/www/b.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/cache.tvl.su.nix" - "${depot.depotPath}/ops/modules/www/cl.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/code.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/cs.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/login.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/tazj.in.nix" - "${depot.depotPath}/ops/modules/www/todo.tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/tvl.fyi.nix" - "${depot.depotPath}/ops/modules/www/wigglydonke.rs.nix" + "${depot.path}/ops/modules/clbot.nix" + "${depot.path}/ops/modules/irccat.nix" + "${depot.path}/ops/modules/monorepo-gerrit.nix" + "${depot.path}/ops/modules/panettone.nix" + "${depot.path}/ops/modules/paroxysm.nix" + "${depot.path}/ops/modules/smtprelay.nix" + "${depot.path}/ops/modules/sourcegraph.nix" + "${depot.path}/ops/modules/tvl-buildkite.nix" + "${depot.path}/ops/modules/tvl-slapd/default.nix" + "${depot.path}/ops/modules/tvl-sso/default.nix" + "${depot.path}/ops/modules/www/b.tvl.fyi.nix" + "${depot.path}/ops/modules/www/cache.tvl.su.nix" + "${depot.path}/ops/modules/www/cl.tvl.fyi.nix" + "${depot.path}/ops/modules/www/code.tvl.fyi.nix" + "${depot.path}/ops/modules/www/cs.tvl.fyi.nix" + "${depot.path}/ops/modules/www/login.tvl.fyi.nix" + "${depot.path}/ops/modules/www/tazj.in.nix" + "${depot.path}/ops/modules/www/todo.tvl.fyi.nix" + "${depot.path}/ops/modules/www/tvl.fyi.nix" + "${depot.path}/ops/modules/www/wigglydonke.rs.nix" "${pkgs.path}/nixos/modules/services/web-apps/gerrit.nix" ]; diff --git a/ops/modules/www/wigglydonke.rs.nix b/ops/modules/www/wigglydonke.rs.nix index 4643b343174a..bdfbca58d802 100644 --- a/ops/modules/www/wigglydonke.rs.nix +++ b/ops/modules/www/wigglydonke.rs.nix @@ -9,7 +9,7 @@ services.nginx.virtualHosts."wigglydonke.rs" = { enableACME = true; forceSSL = true; - root = "${depot.depotPath}/users/grfn/wigglydonke.rs"; + root = "${depot.path}/users/grfn/wigglydonke.rs"; }; }; } diff --git a/ops/nixos.nix b/ops/nixos.nix index 465a2eed3198..6a583c53db48 100644 --- a/ops/nixos.nix +++ b/ops/nixos.nix @@ -33,7 +33,7 @@ in rec { fi echo "Rebuilding NixOS for $HOSTNAME" - system=$(nix-build -E "((import ${toString depot.depotPath} {}).ops.nixos.findSystem \"$HOSTNAME\").system" --no-out-link --show-trace) + system=$(nix-build -E "((import ${toString depot.path} {}).ops.nixos.findSystem \"$HOSTNAME\").system" --no-out-link --show-trace) nix-env -p /nix/var/nix/profiles/system --set $system $system/bin/switch-to-configuration switch |