add zathura
This commit is contained in:
parent
56ffc7220f
commit
3fa51bdbd3
3 changed files with 14 additions and 0 deletions
|
|
@ -13,6 +13,8 @@
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
||||||
|
|
||||||
|
nix.daemonCPUSchedPolicy = "idle";
|
||||||
|
|
||||||
networking.hostName = "nixos"; # Define your hostname.
|
networking.hostName = "nixos"; # Define your hostname.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@
|
||||||
[ (import ../modules/themes/home.nix) ] ++
|
[ (import ../modules/themes/home.nix) ] ++
|
||||||
[ (import ../modules/programs/mako.nix) ] ++
|
[ (import ../modules/programs/mako.nix) ] ++
|
||||||
[ (import ../modules/programs/alacritty.nix) ] ++
|
[ (import ../modules/programs/alacritty.nix) ] ++
|
||||||
|
[ (import ../modules/programs/zathura.nix) ] ++
|
||||||
[ (import ../modules/desktop/gtk.nix) ] ++
|
[ (import ../modules/desktop/gtk.nix) ] ++
|
||||||
[ (import ../modules/shell/zsh/home.nix) ];
|
[ (import ../modules/shell/zsh/home.nix) ];
|
||||||
|
|
||||||
|
|
|
||||||
11
modules/programs/zathura.nix
Normal file
11
modules/programs/zathura.nix
Normal 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"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue