26 lines
687 B
Nix
26 lines
687 B
Nix
{ config, lib, ... }:
|
|
let
|
|
inherit (lib) mkIf;
|
|
cfg = config.programs.uwsm;
|
|
in
|
|
{
|
|
config = mkIf cfg.enable {
|
|
services.dbus.implementation = lib.mkForce "dbus";
|
|
|
|
programs.uwsm = {
|
|
enable = true;
|
|
waylandCompositors = {
|
|
hyprland = mkIf config.programs.hyprland.enable {
|
|
prettyName = "Hyprland";
|
|
comment = "Hyprland compositor managed by UWSM";
|
|
binPath = "/run/current-system/sw/bin/Hyprland";
|
|
};
|
|
sway = mkIf config.programs.sway.enable {
|
|
prettyName = "Sway";
|
|
comment = "Sway compositor managed by UWSM";
|
|
binPath = "/run/current-system/sw/bin/sway";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|