refactor(ops/nixos): Prepare for restricted eval

Change-Id: I7b5304dda3040830fe90fc188b35da3fd95451a0
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5682
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
This commit is contained in:
Vincent Ambo 2022-05-26 14:31:47 +02:00 committed by tazjin
parent d10cbc711d
commit 7a0a4224a5

View file

@ -8,8 +8,8 @@ in rec {
# Ensure that pkgs == third_party.nix
nixpkgs.pkgs = depot.third_party.nixpkgs;
nix.nixPath = [
"nixos=${pkgs.path}"
"nixpkgs=${pkgs.path}"
("nixos=" + pkgs.path)
("nixpkgs=" + pkgs.path)
];
};