mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
vanadium: move overlays up a level
This commit is contained in:
parent
b01142d84f
commit
5a3d2089ad
5 changed files with 2 additions and 2 deletions
36
nix/configurations/vanadium/overlay.nix
Normal file
36
nix/configurations/vanadium/overlay.nix
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
let
|
||||
sources = import ../../sources.nix;
|
||||
lib = import (sources.nixpkgs + "/lib");
|
||||
|
||||
infuse-lib = import sources.infuse {
|
||||
inherit lib;
|
||||
sugars = infuse-lib.v1.default-sugars;
|
||||
};
|
||||
|
||||
infuse = infuse-lib.v1.infuse;
|
||||
in
|
||||
# Why shouldn't I go crazy with overlays?
|
||||
(final: prev:
|
||||
infuse prev {
|
||||
cmus.__input.alsaSupport = _: false;
|
||||
|
||||
fish.__input.usePython = _: false;
|
||||
|
||||
tmux.__input.withSixel = _: false;
|
||||
|
||||
ranger.__input.imagePreviewSupport = _: false;
|
||||
ranger.__input.sixelPreviewSupport = _: false;
|
||||
|
||||
vlc.__input.chromecastSupport = _: false;
|
||||
vlc.__input.waylandSupport = _: false;
|
||||
|
||||
fcitx5.__output.cmakeFlags.__append = [
|
||||
(lib.cmakeFeature "ENABLE_EMOJI" "Off")
|
||||
(lib.cmakeFeature "ENABLE_WAYLAND" "Off")
|
||||
];
|
||||
fcitx5.__output.patches.__append = [
|
||||
./patches/fcitx5/disable-clipboard.patch
|
||||
./patches/fcitx5/disable-quickphrase.patch
|
||||
./patches/fcitx5/disable-unicode.patch
|
||||
];
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue