diff --git a/pkgsets/python3.nix b/pkgsets/python3.nix index 908ab12..4936f75 100644 --- a/pkgsets/python3.nix +++ b/pkgsets/python3.nix @@ -3,8 +3,8 @@ let gitpkgs = import /nixpkgs {}; in { - config.machine.pkgsets.python3.pkgwrap = (pkgs.python3Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs)); - config.machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [ + config.machine.pkgsets.python3.pkgwrap = (pkgs.python38Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs)); + config.machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [ GitPython bpython # cairosvg cairocffi diff --git a/services/desktop.nix b/services/desktop.nix index 6413af7..b461b5b 100644 --- a/services/desktop.nix +++ b/services/desktop.nix @@ -52,5 +52,5 @@ in mkIf (elem "desktop" cfg.services) { horizontalScrolling = true; }; }; - machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [ py3status pytz tzlocal ]; + machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [ py3status pytz tzlocal ]; }