home: added zathura config
This commit is contained in:
parent
93c2e8ac5d
commit
9390d5ebdd
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, unstable, ... }:
|
||||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./bitwarden.nix
|
||||
|
@ -24,6 +24,7 @@
|
|||
./vscode.nix
|
||||
./whatsapp.nix
|
||||
./zsh.nix
|
||||
./zathura.nix
|
||||
];
|
||||
|
||||
programs.fzf = {
|
||||
|
|
11
home/programs/zathura.nix
Normal file
11
home/programs/zathura.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ config, lib, ... }:
|
||||
let
|
||||
cfg = config.profile.home.programs.zathura;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
programs.zathura = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -72,5 +72,9 @@
|
|||
nextcloud.enable = lib.mkEnableOption "nextcloud";
|
||||
|
||||
cockpit.enable = lib.mkEnableOption "cockpit";
|
||||
home.programs = {
|
||||
zathura.enable = lib.mkEnableOption "zathura";
|
||||
floorp.enable = lib.mkEnableOption "floorp";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -76,5 +76,9 @@ in
|
|||
|
||||
microsoft-edge.enable = true;
|
||||
nextcloud.enable = true;
|
||||
|
||||
home.programs = {
|
||||
zathura.enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue