pub-solar-os/overlays/qute.nix
Timothy DeHerrera 4cf8048807
overlays: init overlays directory
Overlays now live globally in the overlays directory. They will be
pulled into the flake and the rest of your configuration automatically
from there.
2020-01-06 00:01:00 -07:00

7 lines
186 B
Nix

final: prev: {
# wrapper to specify config file
qute = prev.writeShellScriptBin "qute" ''
exec ${prev.qutebrowser}/bin/qutebrowser -C /etc/xdg/qutebrowser/config.py "$@"
'';
}