trying out zen

This commit is contained in:
cnst
2024-10-20 18:20:33 +02:00
parent 2cbe3a0ff9
commit f41f2f11ed
8 changed files with 54 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ in {
swedish-dictionary
reddit-enhancement-suite
return-youtube-dislikes
# enhancer-for-youtube # unfree
enhancer-for-youtube # unfree
];
settings = {
"apz.overscroll.enabled" = true;

View File

@@ -0,0 +1,19 @@
{
pkgs,
config,
lib,
inputs,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.home.browsers.zen;
in {
options = {
home.browsers.zen.enable = mkEnableOption "Enables zen browser";
};
config = mkIf cfg.enable {
home.packages = [
inputs.zen-browser.packages.${pkgs.system}.default
];
};
}

View File

@@ -26,8 +26,8 @@ in {
"$passwordManager" = "keepassxc";
"$menu" = "pkill anyrun || anyrun | xargs hyprctl dispatch exec --";
"$menuw" = "pkill anyrun || anyrun | xargs hyprctl dispatch exec --";
"$browser" = "firefox";
"$browserinc" = "firefox --private-window";
"$browser" = "zen";
"$browserinc" = "zen --private-window";
"$yazi" = "alacritty -e yazi";
"$tuirun" = "tuirun-toggle.sh";