13 lines
283 B
Nix
13 lines
283 B
Nix
{ config, lib, ... }:
|
|
{
|
|
programs.foot = {
|
|
enable = true;
|
|
settings = {
|
|
main.font = lib.mkForce "${config.stylix.fonts.monospace.name}:size=19";
|
|
main.font-size-adjustment = 1;
|
|
cursor.style = "beam";
|
|
key-bindings.spawn-terminal = "none";
|
|
};
|
|
};
|
|
}
|