2024-03-21 17:19:06 +01:00
|
|
|
{ config
|
|
|
|
, lib
|
|
|
|
, ...
|
|
|
|
}:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.my.programs.foot;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
options.my.programs.foot.enable = mkEnableOption "foot";
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home-manager.users.moritz = {
|
|
|
|
programs.foot = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
main = {
|
|
|
|
term = "xterm-256color";
|
2024-03-24 13:20:14 +01:00
|
|
|
font = "FiraCode Nerd Font:size=10";
|
|
|
|
};
|
|
|
|
colors = {
|
|
|
|
alpha = 0.98;
|
2024-03-21 17:19:06 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|