Add Kitty

Friendship ended with ALACRITTY
Now KITTY is my best friend
This commit is contained in:
Tibo De Peuter 2023-10-11 20:56:57 +02:00
parent 76cf33672c
commit eacdcb1d45
9 changed files with 2683 additions and 6 deletions

View file

@ -2,6 +2,7 @@
imports = [
./alacritty
./firefox
./kitty
./steam
./thunderbird
# ./virtualbox

View file

@ -0,0 +1,15 @@
{ inputs, lib, config, pkgs, ... }:
{
home-manager.users.tdpeuter = { pkgs, ... }: {
home = {
packages = with pkgs; [
kitty
];
file = {
".config/kitty".source = ../../../../stow/kitty/.config/kitty;
};
};
};
}