trying out zen
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
imports = [
|
||||
./home/browsers/chromium
|
||||
./home/browsers/firefox
|
||||
./home/browsers/zen
|
||||
|
||||
./home/comm/discord
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
19
modules/home/browsers/zen/default.nix
Normal file
19
modules/home/browsers/zen/default.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -27,6 +27,7 @@ in {
|
||||
(mkIf cfg.desktop.enable [
|
||||
pkgs.protonup
|
||||
pkgs.winetricks
|
||||
pkgs.tor-browser
|
||||
])
|
||||
];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user