nixos-config/modules/desktop/kitty.nix

11 lines
275 B
Nix
Raw Normal View History

2023-09-16 22:14:27 +00:00
{ config, lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.kitty ];
environment.etc."xdg/kitty/kitty.conf".text = ''
include ${pkgs.kitty-themes}/share/kitty-themes/themes/Tango_Dark.conf
term xterm-256color
background #1e1e1e
font_size 12
'';
}