nixdots/home/packages/gui/wayland.nix

16 lines
195 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 {
home.packages = with pkgs; [
wlogout
];
};
}