diff options
author | Mihai Fufezan <[email protected]> | 2023-08-21 15:34:37 +0300 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2023-08-21 15:34:38 +0300 |
commit | 17d8e4750bd79e0d18b5d0c9f578f23fa47552f4 (patch) | |
tree | 11060a5720b947517f36f2eb844851edf07157a1 /nix | |
parent | 63b2189ce81f08ca77894f50e3d484902283189a (diff) | |
download | Hyprland-17d8e4750bd79e0d18b5d0c9f578f23fa47552f4.tar.gz Hyprland-17d8e4750bd79e0d18b5d0c9f578f23fa47552f4.zip |
Nix: remove waybar completely
Get it from Nixpkgs instead.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/overlays.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/nix/overlays.nix b/nix/overlays.nix index f163a062..ddd8b2e6 100644 --- a/nix/overlays.nix +++ b/nix/overlays.nix @@ -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 {}; }; |