summaryrefslogtreecommitdiff
path: root/hm/soft/sioyek.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soft/sioyek.nix')
-rw-r--r--hm/soft/sioyek.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/hm/soft/sioyek.nix b/hm/soft/sioyek.nix
new file mode 100644
index 0000000..6b2650d
--- /dev/null
+++ b/hm/soft/sioyek.nix
@@ -0,0 +1,18 @@
+{ config, lib, ... }:
+let
+ cfg = config.hm.soft.sioyek;
+in
+{
+ options.hm.soft.sioyek.enable = lib.mkEnableOption "enables sioyek pdf reader";
+ config = lib.mkIf cfg.enable {
+ programs.sioyek = {
+ enable = true;
+ config = {
+
+ };
+ bindings = {
+
+ };
+ };
+ };
+}