don't use programs.kitty

This commit is contained in:
Daniel Lovbrotte Olsen 2020-05-12 14:33:06 +02:00
parent 7a55566e4a
commit 284bd33a6c
1 changed files with 7 additions and 6 deletions

View File

@ -4,9 +4,9 @@
imports = [ ./zsh/zsh.nix ]; imports = [ ./zsh/zsh.nix ];
programs.kitty = { home.file.kitty = {
enable = true; target = ".config/kitty/kitty.conf";
settings = '' text = ''
#term xterm-256color #term xterm-256color
font_family monospace font_family monospace
font_size 12.0 font_size 12.0
@ -24,9 +24,10 @@
''; '';
}; };
home.packages = with pkgs; [
gnome3.gnome-terminal home.packages = [
kitty pkgs.gnome3.gnome-terminal
pkgs.kitty
pkgs.ncurses.dev pkgs.ncurses.dev
]; ];
} }