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

16 lines
187 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-06-24 22:08:46 +02:00
home.packages = with pkgs; [ wlogout ];
2024-06-09 22:40:50 +02:00
};
}
2024-06-24 22:08:46 +02:00