11.stylix/modules/foot/hm.nix
2025-03-18 12:10:02 +00:00

21 lines
528 B
Nix

{ config, lib, ... }:
let
theme = config.lib.stylix.colors {
templateRepo = config.stylix.inputs.tinted-foot;
};
in
{
options.stylix.targets.foot.enable =
config.lib.stylix.mkEnableTarget "Foot" true;
config.programs.foot.settings = lib.mkIf config.stylix.targets.foot.enable {
main = {
include = theme;
font =
with config.stylix.fonts;
"${monospace.name}:size=${toString sizes.terminal}";
dpi-aware = "no";
};
colors.alpha = config.stylix.opacity.terminal;
};
}