flocon/modules/hm/programs/terminal/emulators/foot.nix

20 lines
353 B
Nix
Raw Normal View History

{
lib,
config,
osConfig,
...
}: {
config = lib.mkIf osConfig.local.modules.hyprland.enable {
programs.foot = {
enable = true;
settings = {
main = {
term = "xterm-256color";
font = "monospace:size=14";
shell = "${lib.getExe config.programs.fish.package}";
};
};
};
};
}