Add swappy config

This commit is contained in:
ItsDrike 2024-06-24 22:08:46 +02:00
parent 75ed5ed91c
commit ccc5cbe1d4
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 38 additions and 5 deletions

View file

@ -0,0 +1,15 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
in {
config = mkIf osConfig.myOptions.home-manager.wms.isWayland {
home.packages = with pkgs; [ wlogout ];
};
}