We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c704eb3 commit 26a589fCopy full SHA for 26a589f
deploy_nixos/nixos-instantiate.sh
@@ -19,17 +19,14 @@ command=(nix-instantiate --show-trace --expr '
19
if hermetic
20
then import configuration
21
else import <nixpkgs/nixos> { inherit system configuration; };
22
-
23
- inherit (os.pkgs) lib;
24
25
in {
26
inherit (builtins) currentSystem;
27
28
substituters =
29
- lib.concatStringsSep " " os.config.nix.binaryCaches;
+ builtins.concatStringsSep " " os.config.nix.binaryCaches;
30
31
trusted-public-keys =
32
- lib.concatStringsSep " " os.config.nix.binaryCachePublicKeys;
+ builtins.concatStringsSep " " os.config.nix.binaryCachePublicKeys;
33
34
drv_path = os.system.drvPath;
35
out_path = os.system;
0 commit comments