nix/hosts/nixos-laptop/home-manager/gnome/gnome-terminal-conf.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

2023-08-21 16:24:26 +02:00
{ ... }: {
programs.gnome-terminal = {
2023-08-21 16:29:41 +02:00
enable = true;
2023-08-21 16:30:42 +02:00
themeVariant = "system";
profile."Default" = {
boldIsBright = true;
cursorShape = "block";
font = "Jetbrains Regular Mono";
colors = {
# https://github.com/Gogh-Co/Gogh/blob/master/themes/Gruvbox%20Dark.yml
# highlight = [ ];
palette = [
"#282828" # Black (Host)
"#CC241D" # Red (Syntax string)
"#98971A" # Green (Command)
"#D79921" # Yellow (Command second)
"#458588" # Blue (Path)
"#B16286" # Magenta (Syntax var)
"#689D6A" # Cyan (Prompt)
"#A89984" # White
2023-08-21 16:24:26 +02:00
2023-08-21 16:30:42 +02:00
"#928374" # Bright Black
"#FB4934" # Bright Red (Command error)
"#B8BB26" # Bright Green (Exec)
"#FABD2F" # Bright Yellow
"#83A598" # Bright Blue (Folder)
"#D3869B" # Bright Magenta
"#8EC07C" # Bright Cyan
"#EBDBB2" # Bright White
"#282828" # Background
"#EBDBB2" # Foreground (Text)
"#EBDBB2" # Cursor
];
};
};
2023-08-21 16:24:26 +02:00
};
}