config/modules/home/apps/term/foot/default.nix
2024-08-21 14:35:32 -04:00

25 lines
372 B
Nix

{
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;
settings = {
colors = {
alpha = "0.9";
};
};
};
};
}