home | add foot

This commit is contained in:
Don Harper 2023-10-23 09:00:32 +00:00
parent a04f632f31
commit 02fba74f97
2 changed files with 46 additions and 3 deletions

View file

@ -1,13 +1,13 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
imports = [ imports = [
./autostart.nix
./alacritty.nix ./alacritty.nix
./autostart.nix
./citrix.nix ./citrix.nix
./kitty.nix
./mpv.nix
./fuzzel.nix ./fuzzel.nix
./kde.nix ./kde.nix
./mpv.nix
./terminals.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
#cantarell-fonts #cantarell-fonts

43
home/terminals.nix Normal file
View file

@ -0,0 +1,43 @@
{ config, pkgs, ... }:
{
programs.kitty = {
enable = true;
font = {
#name = "Terminus";
name = "Fira Code";
size = 10;
};
theme = "Dracula";
settings = {
mouse_hide_wait = "3.0";
url_style = "double";
copy_on_select = "no";
background_opacity = "0.75";
scrollback_lines = 4000;
scrollback_pager_history_size = 2048;
};
};
programs.foot = {
enable = true;
server = {
enable = true;
};
settings = {
main = {
#font = "Terminus:size=10";
font = "Fira Code:size=11";
dpi-aware = "yes";
term = "tmux-256color";
};
mouse = {
hide-when-typing = "yes";
};
bell = {
urgent = "yes";
};
colors = {
alpha = "0.75";
};
};
};
}