diff options
-rw-r--r-- | hosts/richese/default.nix | 4 | ||||
-rw-r--r-- | overlays/default.nix | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index 7f41861..d612b07 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -9,9 +9,7 @@ environment.systemPackages = with pkgs; [ git-review - (openstackclient-full.overrideAttrs (oldAttrs: { - dependencies = oldAttrs.dependencies ++ [ pysocks ]; - })) + openstackclient-full ]; imports = [ diff --git a/overlays/default.nix b/overlays/default.nix index aaab968..03592ae 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -20,6 +20,9 @@ # example = prev.example.overrideAttrs (oldAttrs: rec { # ... # }); + openstackclient-full = prev.openstackclient-full.overrideAttrs (oldAttrs: rec { + dependencies = oldAttrs.dependencies ++ [ pysocks ]; + }); }; "67e692392-packages" = final: _prev: { |