add zathura

This commit is contained in:
Glen Goodwin 2023-10-08 22:01:24 -04:00
parent 56ffc7220f
commit 3fa51bdbd3
3 changed files with 14 additions and 0 deletions

View file

@ -13,6 +13,8 @@
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
nix.daemonCPUSchedPolicy = "idle";
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.

View file

@ -13,6 +13,7 @@
[ (import ../modules/themes/home.nix) ] ++
[ (import ../modules/programs/mako.nix) ] ++
[ (import ../modules/programs/alacritty.nix) ] ++
[ (import ../modules/programs/zathura.nix) ] ++
[ (import ../modules/desktop/gtk.nix) ] ++
[ (import ../modules/shell/zsh/home.nix) ];

View file

@ -0,0 +1,11 @@
{ pkgs, config, ... }:
{
programs.zathura = {
enable = true;
extraConfig = ''
# Open document in fit-width mode by default
set adjust-open "best-fit"
'';
};
}