nix-da/modules/programs/sway.nix
2024-12-11 18:14:49 +01:00

17 lines
363 B
Nix

{ config, lib, ... }:
lib.mkIf config.programs.sway.enable {
programs = {
uwsm = {
waylandCompositors.sway = {
prettyName = "Sway";
comment = "Sway compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/sway";
};
};
sway = {
wrapperFeatures.gtk = true;
extraPackages = [ ];
};
};
}