mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
add kitty terminal
This commit is contained in:
parent
8527b5e3ac
commit
aedbc66685
2 changed files with 11 additions and 0 deletions
|
@ -9,6 +9,7 @@ with lib;
|
|||
./alacritty.nix
|
||||
./chromium.nix
|
||||
./firefox.nix
|
||||
./kitty.nix
|
||||
];
|
||||
|
||||
config = mkIf (config.sconfig.desktop.enable) {
|
||||
|
|
10
modules/desktop/kitty.nix
Normal file
10
modules/desktop/kitty.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ 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
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue