nix/modules/home-manager/desktop/sway/includes/kanshi.nix

20 lines
310 B
Nix

{
config,
lib,
...
}:
with lib; let
cfg = config.modules.desktop.sway;
in {
config = mkIf cfg.enable {
services.kanshi = {
enable = cfg.kanshi.enable;
settings =
[
cfg.kanshi.standalone
cfg.kanshi.home
]
++ cfg.kanshi.others;
};
};
}