Switched Kitty to the home-manager module

This commit is contained in:
2024-10-15 16:29:35 -03:00
parent 51dcc601bd
commit d9d949164c
2 changed files with 7 additions and 1 deletions

View File

@@ -1,10 +1,13 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [
./kitty
];
home.packages = with pkgs; [ home.packages = with pkgs; [
# KDE specific packages # KDE specific packages
kate kate
kcalc kcalc
kdePackages.kcolorpicker kdePackages.kcolorpicker
kdePackages.alpaka kdePackages.alpaka
kitty
]; ];
} }

View File

@@ -0,0 +1,3 @@
{
programs.kitty.enable = true;
}