Nix: remove waybar completely

Get it from Nixpkgs instead.
This commit is contained in:
Mihai Fufezan 2023-08-21 15:34:37 +03:00
parent 63b2189ce8
commit 17d8e4750b
No known key found for this signature in database
GPG Key ID: 5899325F2F120900
2 changed files with 1 additions and 5 deletions

View File

@ -74,7 +74,6 @@
wlroots-hyprland
udis86
;
waybar-hyprland = lib.warn "The `waybar-hyprland` package is now in Nixpkgs" pkgsFor.${system}.waybar-hyprland;
});
devShells = eachSystem (system: {

View File

@ -15,7 +15,7 @@
lib.foldl' (attrs: overlay: attrs // (overlay final prev)) {} overlays;
in {
# Contains what a user is most likely to care about:
# Hyprland itself, XDPH, the Share Picker, and patched Waybar.
# Hyprland itself, XDPH and the Share Picker.
default = mkJoinedOverlays (with self.overlays; [
hyprland-packages
hyprland-extras
@ -52,11 +52,8 @@ in {
hyprland-extras = mkJoinedOverlays [
inputs.xdph.overlays.xdg-desktop-portal-hyprland
inputs.xdph.overlays.hyprland-share-picker
self.overlays.waybar-hyprland
];
waybar-hyprland = lib.warn "The `waybar-hyprland` package is now in Nixpkgs" (final: prev: {inherit (prev) waybar-hyprland;});
udis86 = final: prev: {
udis86 = final.callPackage ./udis86.nix {};
};