nixos/qtile: expose unwrapped package to systemPackages

This commit is contained in:
Jonathan Ringer 2022-04-05 10:43:15 -07:00
parent 68ee8e4b77
commit c2828e8479
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -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)
];
};
}