summaryrefslogtreecommitdiff
path: root/modules/nixos/zathura.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/zathura.nix')
-rw-r--r--modules/nixos/zathura.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/nixos/zathura.nix b/modules/nixos/zathura.nix
deleted file mode 100644
index 95039a5..0000000
--- a/modules/nixos/zathura.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, lib, ... }:
-with lib;
-let
- cfg = config.nixfiles.modules.zathura;
-in
-{
- config = mkIf cfg.enable {
- nixfiles.modules.common.xdg.defaultApplications."org.pwmt.zathura" = [
- "application/pdf"
- "application/epub+zip"
- ];
- };
-}