NixOS/home/programs/foot.nix

25 lines
539 B
Nix
Raw Normal View History

2024-07-26 16:57:20 +07:00
{ config, lib, ... }:
let
cfg = config.profile.home.programs.foot;
in
{
config = lib.mkIf cfg.enable {
programs.foot = {
enable = true;
settings = {
main = {
font = "JetBrainsMono Nerd Font Mono:size=12";
include = lib.mkIf config.profile.hyprland.enable "${config.home.homeDirectory}/.config/foot/colors.ini";
};
mouse = {
hide-when-typing = "yes";
};
2024-08-01 22:46:18 +07:00
cursor = {
style = "beam";
blink = "yes";
};
2024-07-26 16:57:20 +07:00
};
};
};
}