combine local overlays
1 file changed, 15 insertions(+), 0 deletions(-)
changed files
A overlays/default.nix
@@ -0,0 +1,15 @@ +self: super: { + firefox-bin-unwrapped = super.firefox-bin-unwrapped.override { systemLocale = "en-GB"; }; + firefox-devedition-bin-unwrapped = super.firefox-devedition-bin-unwrapped.override { + systemLocale = "en-GB"; + }; + enchant = super.enchant.override { + withHspell = false; + withAspell = false; + }; + rofi = super.rofi.overrideAttrs (oldAttrs: { + postInstall = '' + ln $out/bin/rofi $out/bin/dmenu + ''; + }); +}