Switch to qutebrowser

This commit is contained in:
Charlotte Van Petegem 2021-07-28 18:52:06 +02:00
parent 93a25ba89a
commit 110481af59
No known key found for this signature in database
GPG key ID: 019E764B7184435A
12 changed files with 63 additions and 55 deletions

View file

@ -1,19 +0,0 @@
{ config, lib, pkgs, ... }:
{
options.chvp.graphical.firefox.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.graphical.firefox.enable {
chvp.base.zfs.homeLinks = [
{ path = ".cache/mozilla"; type = "cache"; }
{ path = ".mozilla"; type = "data"; }
];
home-manager.users.charlotte = { ... }: {
home.packages = with pkgs; [ firefox ];
};
};
}