Add sxiv support

This commit is contained in:
DwarfMaster 2023-03-25 10:51:40 +01:00
parent 45f856230b
commit 34e5b7df61

19
modules/sxiv/hm.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, lib, ... }:
let
colors = config.lib.stylix.colors;
fonts = config.stylix.fonts;
in {
options.stylix.targets.sxiv.enable =
config.lib.stylix.mkEnableTarget "Sxiv" true;
config = lib.mkIf config.stylix.targets.sxiv.enable {
xresources = {
properties = {
"Sxiv.foreground" = "#${colors.base01}";
"Sxiv.background" = "#${colors.base04}";
"Sxiv.font" = "${fonts.sansSerif.name}-${toString fonts.sizes.applications}";
};
};
};
}