2023-04-12 07:50:46 +01:00
|
|
|
{ ... }:
|
|
|
|
{
|
2023-04-12 13:18:03 +01:00
|
|
|
imports = [ ./common.nix ];
|
2023-04-12 07:50:46 +01:00
|
|
|
fonts.fontconfig.enable = true;
|
|
|
|
programs.foot = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
main = {
|
|
|
|
term = "xterm-256color";
|
|
|
|
font = "FiraCode Nerd Font:size=8";
|
|
|
|
dpi-aware = "yes";
|
|
|
|
};
|
|
|
|
mouse = {
|
|
|
|
hide-when-typing = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|