Add Kitty
Friendship ended with ALACRITTY Now KITTY is my best friend
This commit is contained in:
parent
76cf33672c
commit
eacdcb1d45
9 changed files with 2683 additions and 6 deletions
15
nixos/modules/apps/kitty/default.nix
Normal file
15
nixos/modules/apps/kitty/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue