nixdots/home/packages/gui/wayland/wlogout.nix
2024-07-27 01:07:07 +02:00

13 lines
182 B
Nix

{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
home.packages = with pkgs; [wlogout];
};
}