nixdots/home/packages/gui/wayland/wlogout.nix

16 lines
187 B
Nix
Raw Normal View History

2024-06-09 20:40:50 +00:00
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
2024-06-24 20:08:46 +00:00
home.packages = with pkgs; [ wlogout ];
2024-06-09 20:40:50 +00:00
};
}
2024-06-24 20:08:46 +00:00