summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-04-05 10:43:15 -0700
committerJonathan Ringer <jonringer117@gmail.com>2022-04-05 10:43:15 -0700
commitc2828e8479f84baaf176d0986164231e408d6e1a (patch)
tree0972e9fc9f817750600cce0ad43042154c5ffba4 /nixos/modules/services/x11/window-managers
parent68ee8e4b77c853220cec3b90ba6d2780278c8867 (diff)
downloadnixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar.gz
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar.bz2
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar.lz
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar.xz
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.tar.zst
nixpkgs-c2828e8479f84baaf176d0986164231e408d6e1a.zip
nixos/qtile: expose unwrapped package to systemPackages
Diffstat (limited to 'nixos/modules/services/x11/window-managers')
-rw-r--r--nixos/modules/services/x11/window-managers/qtile.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/window-managers/qtile.nix b/nixos/modules/services/x11/window-managers/qtile.nix
index 835b41d4ada..8ac3a1c86bd 100644
--- a/nixos/modules/services/x11/window-managers/qtile.nix
+++ b/nixos/modules/services/x11/window-managers/qtile.nix
@@ -20,6 +20,11 @@ in
       '';
     }];
 
-    environment.systemPackages = [ pkgs.qtile ];
+    environment.systemPackages = [
+      # pkgs.qtile is currently a buildenv of qtile and its dependencies.
+      # For userland commands, we want the underlying package so that
+      # packages such as python don't bleed into userland and overwrite intended behavior.
+      (pkgs.qtile.unwrapped or pkgs.qtile)
+    ];
   };
 }