feat(terminal): switch from gnome-terminal to kitty

This commit is contained in:
Felix Schröter 2020-03-24 00:57:11 +01:00
parent 17a527c023
commit 91dee66ef3
No known key found for this signature in database
GPG key ID: A12D7C9D2FD34458
4 changed files with 69 additions and 0 deletions

14
home/shell/terminal.nix Normal file
View 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}
'';
};
}