diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2024-12-09 10:42:24 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2024-12-09 10:42:24 -0800 |
commit | a77132be02083c1cbd16ff360d464c4c3657aaad (patch) | |
tree | 45612b6c62bd907f187df9158d09a27e42a8befe /hosts | |
parent | b179c41a6162b2c8c5c4ba565ad1cf2889748a5c (diff) | |
download | nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar.gz nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar.bz2 nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar.lz nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar.xz nix-a77132be02083c1cbd16ff360d464c4c3657aaad.tar.zst nix-a77132be02083c1cbd16ff360d464c4c3657aaad.zip |
Test PR 363651
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/richese/default.nix | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/hosts/richese/default.nix b/hosts/richese/default.nix index 0db3656..7b7d15d 100644 --- a/hosts/richese/default.nix +++ b/hosts/richese/default.nix @@ -9,7 +9,7 @@ environment.systemPackages = with pkgs; [ git-review - openstackclient-full + pr363651.openstackclient-full ]; imports = [ @@ -38,16 +38,10 @@ config.allowUnfree = true; hostPlatform = "x86_64-linux"; overlays = [ - (final: prev: { - pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ (pyfinal: pyprev: { - python-openstackclient = pyprev.python-openstackclient.overridePythonAttrs (oldAttrs: { - dependencies = oldAttrs.dependencies ++ [ pkgs.python311Packages.pysocks ]; - }); - })]; - }) outputs.overlays.additions outputs.overlays.modifications outputs.overlays.master-packages + outputs.overlays.pr363651-packages outputs.overlays.stable-packages ]; }; |