libxcursor fix
This commit is contained in:
parent
32506837ad
commit
33375a30f6
|
|
@ -5,8 +5,8 @@
|
||||||
}: let
|
}: let
|
||||||
deps = {
|
deps = {
|
||||||
bell = [pkgs.pipewire pkgs.libnotify];
|
bell = [pkgs.pipewire pkgs.libnotify];
|
||||||
nsxiv-rifle = [pkgs.nsxiv];
|
#nsxiv-rifle = [pkgs.nsxiv];
|
||||||
screenshot = [pkgs.maim pkgs.xclip];
|
#screenshot = [pkgs.maim pkgs.xclip];
|
||||||
};
|
};
|
||||||
mkln = x: config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.local/nixos/user/bin/${x}";
|
mkln = x: config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.local/nixos/user/bin/${x}";
|
||||||
in {
|
in {
|
||||||
|
|
|
||||||
|
|
@ -18,10 +18,16 @@
|
||||||
})
|
})
|
||||||
alacritty
|
alacritty
|
||||||
mpv
|
mpv
|
||||||
nsxiv
|
(nsxiv.overrideAttrs {
|
||||||
|
buildInputs = pkgs.nsxiv.buildInputs ++ [pkgs.xorg.libXcursor];
|
||||||
|
env.NIX_LDFLAGS = "-lXcursor";
|
||||||
|
})
|
||||||
rofi
|
rofi
|
||||||
sct
|
sct
|
||||||
maim
|
(maim.overrideAttrs {
|
||||||
|
buildInputs = pkgs.maim.buildInputs ++ [pkgs.xorg.libXcursor];
|
||||||
|
env.NIX_LDFLAGS = "-lXcursor";
|
||||||
|
})
|
||||||
xclip
|
xclip
|
||||||
copyq
|
copyq
|
||||||
picom
|
picom
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue