all repos — nixfiles @ 4ec14dff284e12134fb47366c11e020c1374a823

System and user configuration, managed by nix and home-manager

combine local overlays

Alan Pearce
commit

4ec14dff284e12134fb47366c11e020c1374a823

parent

4a6843252af16bad9152ff7c9736b51a3be33ccf

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 + ''; + }); +}