vanadium: add extra overlay

This commit is contained in:
Primrose 2025-05-16 21:33:47 +02:00
parent 57b2dec680
commit 6c8c7976d8
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 27 additions and 0 deletions

View file

@ -41,6 +41,7 @@ in
../overlays ../overlays
../overlays/packages.nix ../overlays/packages.nix
../overlays/packagesStable.nix ../overlays/packagesStable.nix
./vanadium/nixos/overlay.nix
]; ];
# Set NIX_PATH and flake registry at the same time # Set NIX_PATH and flake registry at the same time

View file

@ -0,0 +1,26 @@
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;
})