nixdots/home/packages/gui/wayland/wlogout.nix
2024-06-24 22:08:46 +02:00

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