config/modules/home/apps/term/foot/default.nix

29 lines
448 B
Nix
Raw Normal View History

2024-08-07 10:44:50 -04:00
{
lib,
config,
pkgs,
...
}:
with lib;
with lib.custom; let
cfg = config.apps.term.foot;
in {
options.apps.term.foot = with types; {
enable = mkBoolOpt false "Enable Foot Terminal";
};
config = mkIf cfg.enable {
programs.foot = {
enable = true;
2024-08-21 14:35:32 -04:00
settings = {
2024-09-23 19:22:17 -04:00
main = {
font = "Iosevka:weight=bold:size=20";
};
2024-08-21 14:35:32 -04:00
colors = {
alpha = "0.9";
};
};
2024-08-07 10:44:50 -04:00
};
};
}