feat(terminal): switch from gnome-terminal to kitty
This commit is contained in:
parent
17a527c023
commit
91dee66ef3
4 changed files with 69 additions and 0 deletions
14
home/shell/terminal.nix
Normal file
14
home/shell/terminal.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "Fira Code";
|
||||
package = pkgs.fira-code;
|
||||
};
|
||||
extraConfig = ''
|
||||
${with builtins; readFile ./kitty-gruvbox-dark.conf}
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue