nixos-config/home-manager/modules/zathura/default.nix
Erwin Boskma 4cd0f83ce8
Some checks failed
/ check (push) Failing after 2m46s
Run nixfmt
2024-02-05 11:46:52 +01:00

18 lines
312 B
Nix

{ config, lib, ... }:
with lib;
let
cfg = config.eboskma.programs.zathura;
in
{
options.eboskma.programs.zathura = {
enable = mkEnableOption "activate zathura";
};
config = mkIf cfg.enable {
programs.zathura = {
enable = true;
extraConfig = builtins.readFile ./theme;
};
};
}