feat(rofi): use latest version of wayland fork
parent
bc8972b581
commit
04d63a1977
|
@ -34,6 +34,9 @@
|
||||||
nix-super.url = "github:privatevoid-net/nix-super/aaba1f91e7eba8ce029fa6bfa81ad9e14a13708d";
|
nix-super.url = "github:privatevoid-net/nix-super/aaba1f91e7eba8ce029fa6bfa81ad9e14a13708d";
|
||||||
nix-super.inputs.nixpkgs.follows = "nixpkgs";
|
nix-super.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
|
rofi-wayland.url = "github:lbonn/rofi/wayland";
|
||||||
|
rofi-wayland.flake = false;
|
||||||
|
|
||||||
# Neovim
|
# Neovim
|
||||||
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ inputs, ... }:
|
{ inputs, lib, ... }:
|
||||||
|
|
||||||
_: prev:
|
_: prev:
|
||||||
{
|
{
|
||||||
|
@ -7,4 +7,8 @@ _: prev:
|
||||||
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
|
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
|
||||||
nil = inputs.nil.packages.${prev.system}.default;
|
nil = inputs.nil.packages.${prev.system}.default;
|
||||||
nix-super = inputs.nix-super.packages.${prev.system}.default;
|
nix-super = inputs.nix-super.packages.${prev.system}.default;
|
||||||
|
rofi-wayland = prev.rofi-wayland.overrideAttrs (_: {
|
||||||
|
src = inputs.rofi-wayland;
|
||||||
|
version = lib.my.mkVersionInput inputs.rofi-wayland;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue