]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/elinks/default.nix
Add flake skeletons
[perso/Immae/Config/Nix.git] / overlays / elinks / default.nix
1 self: super: {
2 elinks = super.elinks.overrideAttrs (old: rec {
3 configureFlags = old.configureFlags ++ [
4 "--disable-smb" "--without-x" "--enable-leds" "--with-zlib"
5 ];
6 });
7 }