flake/home/applications/foot/default.nix

21 lines
417 B
Nix
Raw Normal View History

2025-01-18 15:26:47 +08:00
{
lib,
pkgs,
config,
...
}:
2024-06-23 15:31:24 +08:00
{
programs.foot = {
enable = true;
settings = {
main.font = "monospace:size=10";
2024-07-07 20:26:14 +08:00
main.resize-by-cells = false;
2025-01-18 15:03:36 +08:00
main.shell = "${lib.getExe pkgs.tmux} new-session -t main";
2024-06-23 15:31:24 +08:00
cursor.style = "beam";
2024-11-15 21:21:08 +08:00
url.label-letters = "aoeuhtns";
2024-11-07 16:47:33 +08:00
} // import ./tokyonight_night.nix;
2024-06-23 15:31:24 +08:00
};
2025-01-18 15:26:47 +08:00
home.sessionVariables."TERMINAL" = config.programs.foot.package;
2024-06-23 15:31:24 +08:00
}