1
0
Fork 0
mirror of https://github.com/ItsDrike/nixdots synced 2025-02-19 15:49:03 +00:00
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