Switch to qutebrowser

This commit is contained in:
Charlotte Van Petegem 2020-10-14 17:40:21 +02:00
parent 7c48e6052a
commit 68de755a18
No known key found for this signature in database
GPG key ID: 019E764B7184435A
5 changed files with 28 additions and 10 deletions

View file

@ -0,0 +1,19 @@
{ pkgs, ... }: {
environment.systemPackages = [ pkgs.eid-mw ];
home-manager.users.charlotte = { ... }: {
programs.qutebrowser = {
enable = true;
extraConfig = ''
config.load_autoconfig()
'';
};
};
custom.zfs.homeLinks = [
{ path = ".pki"; type = "cache"; } # Required for eid-mw browser configuration
{ path = ".cache/qutebrowser"; type = "cache"; }
{ path = ".local/share/qutebrowser"; type = "data"; }
{ path = ".config/qutebrowser/autoconfig.yml"; type = "data"; }
];
}