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

13 lines
182 B
Nix
Raw Normal View History

2024-06-09 22:40:50 +02:00
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
2024-07-27 01:07:07 +02:00
home.packages = with pkgs; [wlogout];
2024-06-09 22:40:50 +02:00
};
}