home/breakerbox: make zathura breaker

This commit is contained in:
2025-08-22 13:46:01 +02:00
parent 65e357e8ff
commit a788f3c087
2 changed files with 16 additions and 19 deletions

View File

@@ -57,6 +57,7 @@ in
./programs/vscode
./programs/yazi.nix
./programs/yt-dlp.nix
./programs/zathura.nix
./programs/zed
./programs/zoxide.nix
./programs/zsh
@@ -74,7 +75,6 @@ in
] ++ (optionals graphics [
./config/gtk.nix
./programs/zathura.nix
./services/fcitx5.nix
./services/keybase.nix
@@ -147,6 +147,7 @@ in
programs.taskwarrior.enable = graphics;
programs.thunderbird.enable = graphics;
programs.vscode.enable = graphics;
programs.zathura.enable = graphics;
programs.zed-editor.enable = graphics;
services.copyq.enable = graphics;

View File

@@ -1,8 +1,5 @@
{ ... }:
{
programs.zathura = {
enable = true;
options = {
programs.zathura.options = {
selection-clipboard = "clipboard";
default-bg = "#f2e3bd";
@@ -22,5 +19,4 @@
recolor-darkcolor = "#101010";
recolor-keephue = true;
};
};
}