My Nix Configuration

[home.waybar] Remove waybar patches since they break the build

Changed files
+7
modules
home
wayland
+7
modules/home/wayland/waybar.nix
···
pkgs,
lib,
config,
+
inputs,
+
system,
...
}:
let
···
};
programs.waybar = lib.mkIf cfg.enable {
enable = lib.mkDefault true;
+
package = (
+
inputs.waybar.packages.${system}.waybar.overrideAttrs {
+
patches = [ ];
+
}
+
);
catppuccin.enable = false;
systemd.enable = true;
systemd.target = "sway-session.target";