mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
10 lines
262 B
Nix
10 lines
262 B
Nix
{ 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
|
|
'';
|
|
}
|