nix-da/modules/programs/sway.nix
2024-10-26 01:51:22 +02:00

6 lines
120 B
Nix

{ config, lib, ... }:
lib.mkIf config.programs.sway.enable {
programs.sway = {
wrapperFeatures.gtk = true;
};
}