diff options
author | Vincent Ambo <mail@tazj.in> | 2022-05-26T12·49+0200 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-05-26T14·17+0000 |
commit | 48dfefe40da98012b6fbfc0eaf0933389095c1c5 (patch) | |
tree | 92d7f77062b2ec94636315ec0d43d2177bee7875 /ops/machines/sanduny/default.nix | |
parent | 65953e0913f555e328f1a10d0590f2ccad85873d (diff) |
refactor(sanduny): Prepare for restricted-eval r/4136
Change-Id: I83a404dc7dbaf5ca53659d03df4e4de461a9d046 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5688 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org> Autosubmit: tazjin <tazjin@tvl.su>
Diffstat (limited to 'ops/machines/sanduny/default.nix')
-rw-r--r-- | ops/machines/sanduny/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/machines/sanduny/default.nix b/ops/machines/sanduny/default.nix index 109e6e693d96..5f30e08a75f3 100644 --- a/ops/machines/sanduny/default.nix +++ b/ops/machines/sanduny/default.nix @@ -10,7 +10,7 @@ _: # ignore readTree options { config, depot, lib, pkgs, ... }: let - mod = name: depot.path + ("/ops/modules/" + name); + mod = name: depot.path.origSrc + ("/ops/modules/" + name); in { imports = [ |