nichts/modules/services/uwsm.mod.nix
2025-07-16 22:15:41 +02:00

20 lines
368 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.modules.services.uwsm;
inherit (lib.modules) mkIf;
inherit (lib.options) mkEnableOption;
in {
options.modules.services.uwsm.enable = mkEnableOption "uwsm";
config = mkIf cfg.enable {
programs.uwsm = {
enable = true;
package = pkgs.uwsm;
waylandCompositors = {
};
};
};
}