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 = {
|
|
|
|
|
colors = {
|
|
|
|
|
alpha = "0.9";
|
|
|
|
|
};
|
|
|
|
|
};
|
2024-08-07 10:44:50 -04:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|