zathura: add testbed

This commit is contained in:
Daniel Thwaites 2024-11-08 21:00:50 +00:00
parent 6741c2ef6c
commit defb43d450
No known key found for this signature in database
GPG key ID: D8AFC4BF05670F9D

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
let package = pkgs.zathura;
in {
stylix.testbed.application = {
enable = true;
name = "org.pwmt.zathura";
inherit package;
};
home-manager.sharedModules = [{
programs.zathura = {
enable = true;
inherit package;
};
}];
}