Skip to content

Commit c082c5b

Browse files
authoredJul 24, 2020
Revert "network: Add nixpkgs attribute for passing custom nixpkgs"
1 parent 0330ead commit c082c5b

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed
 

‎nix/eval-machine-info.nix

+3-13
Original file line numberDiff line numberDiff line change
@@ -41,24 +41,20 @@ let
4141
if network ? nixpkgs
4242
then (builtins.head (network.nixpkgs)).lib.nixosSystem
4343
else throw "NixOps network must have a 'nixpkgs' attribute"
44-
else import (pkgs.path + "/nixos/lib/eval-config.nix");
44+
else import <nixpkgs/nixos/lib/eval-config.nix>;
4545

4646
pkgs = if flakeUri != null
4747
then
4848
if network ? nixpkgs
4949
then (builtins.head network.nixpkgs).legacyPackages.${system}
5050
else throw "NixOps network must have a 'nixpkgs' attribute"
51-
else (builtins.head (network.network)).nixpkgs or (import <nixpkgs> { inherit system; });
51+
else import <nixpkgs> { inherit system; };
5252

5353
inherit (pkgs) lib;
5454

55-
# Expose path to imported nixpkgs (currently only used to find version suffix)
56-
nixpkgs = builtins.unsafeDiscardStringContext pkgs.path;
57-
5855
in rec {
5956

6057
inherit networks network;
61-
inherit nixpkgs;
6258

6359
importedPluginNixExprs = map
6460
(expr: import expr)
@@ -86,7 +82,6 @@ in rec {
8682
in
8783
{ name = machineName;
8884
value = evalConfig {
89-
inherit pkgs;
9085
modules =
9186
modules ++
9287
defaults ++
@@ -177,11 +172,7 @@ in rec {
177172
pluginDeploymentConfigExporters
178173
));
179174

180-
network =
181-
builtins.removeAttrs
182-
(lib.fold (as: bs: as // bs) {} (network'.network or []))
183-
[ "nixpkgs" ] # Not serialisable
184-
;
175+
network = lib.fold (as: bs: as // bs) {} (network'.network or []);
185176

186177
resources =
187178
let
@@ -254,5 +245,4 @@ in rec {
254245
getNixOpsArgs = fs: lib.zipAttrs (lib.unique (lib.concatMap fileToArgs (getNixOpsExprs fs)));
255246

256247
nixopsArguments = getNixOpsArgs networkExprs;
257-
258248
}

‎nixops/deployment.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -791,9 +791,11 @@ def build_configs(
791791
# Set the NixOS version suffix, if we're building from Git.
792792
# That way ‘nixos-version’ will show something useful on the
793793
# target machines.
794-
#
795-
# TODO: Implement flake compatible version
796-
nixos_path = str(self.evaluate_config("nixpkgs"))
794+
nixos_path = subprocess.check_output(
795+
["nix-instantiate", "--find-file", "nixpkgs/nixos"]
796+
+ self._nix_path_flags(),
797+
text=True,
798+
).rstrip()
797799
get_version_script = nixos_path + "/modules/installer/tools/get-version-suffix"
798800
if os.path.exists(nixos_path + "/.git") and os.path.exists(get_version_script):
799801
self.nixos_version_suffix = subprocess.check_output(

0 commit comments

Comments
 (0)