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