nix-da/modules/programs/sway.nix

7 lines
145 B
Nix

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