mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 08:19:42 +00:00
16 lines
195 B
Nix
16 lines
195 B
Nix
|
{
|
||
|
lib,
|
||
|
pkgs,
|
||
|
osConfig,
|
||
|
...
|
||
|
}: let
|
||
|
inherit (lib) mkIf;
|
||
|
|
||
|
in {
|
||
|
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
|
||
|
home.packages = with pkgs; [
|
||
|
wlogout
|
||
|
];
|
||
|
};
|
||
|
}
|