Kde: enable kate

This commit is contained in:
Toast 2023-07-12 21:24:10 +02:00
parent 76630bb781
commit 31d1018267
2 changed files with 9 additions and 0 deletions

View file

@ -4,5 +4,6 @@
imports = [ imports = [
./plasma.nix ./plasma.nix
./sddm.nix ./sddm.nix
./kate.nix
]; ];
} }

8
roles/kde/kate.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
home-manager.users.toast = { config, pkgs, ... }:
{
home.packages = [ pkgs.kate ];
};
}