diff options
| author | adikro <adikro@disroot.org> | 2026-03-07 22:27:05 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-03-07 22:27:05 +0100 |
| commit | 11d05469368ecfe533c7720e7f5b624f2f8f19fc (patch) | |
| tree | c666f76157b6f9158a2faa723efbf10d1d3dab03 /hm/soft/sioyek.nix | |
| parent | cacaadb79a73fca27bd8bbc0a33a0713d2379655 (diff) | |
...
Diffstat (limited to 'hm/soft/sioyek.nix')
| -rw-r--r-- | hm/soft/sioyek.nix | 18 |
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 = { + + }; + }; + }; +} |
