nix-da/modules/programs/sway.nix
2024-12-11 19:43:40 +01:00

7 lines
145 B
Nix

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