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

13 lines
182 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-07-26 23:07:07 +00:00
home.packages = with pkgs; [wlogout];
2024-06-09 20:40:50 +00:00
};
}