some changes on stylix

This commit is contained in:
afoucaultc 2026-07-05 16:52:50 +02:00
parent 124f7f478b
commit 4e9ed4eb9f
19 changed files with 92 additions and 73 deletions

View file

@ -1,19 +1,18 @@
{ config, pkgs, ... }:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
# default-bg = "#1e1e2e";
# default-fg = "#cdd6f4";
};
mappings = {
# exemple : "<C-r>" = "reload";
};
};
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
synctex = true;
synctex-edit-modifier = "ctrl";
};
mappings = {
};
};
home.packages = with pkgs; [
zathura
poppler-utils
];
home.packages = with pkgs; [
zathura
poppler-utils
];
}