re-enable kde/gnome user specific settings

This commit is contained in:
Vinzenz Schroeter 2023-09-10 11:32:18 +02:00
parent ca2bde7abb
commit db67663eb6
3 changed files with 40 additions and 46 deletions

View file

@ -6,17 +6,16 @@
}: let
cfg = config.my.kde;
# applyKdeUserSettings = {
# #home = {
# # packages = with pkgs; [
# # ];
# #};
# services.kdeconnect = {
# enable = true;
# indicator = true;
# };
# };
applyKdeUserSettings = {
home = {
packages = with pkgs; [
];
};
services.kdeconnect = {
enable = true;
indicator = true;
};
};
in {
options.my.kde = {
enable = lib.mkEnableOption "KDE desktop";
@ -37,17 +36,19 @@ in {
};
};
environment.systemPackages = with pkgs; [
libsForQt5.kate
libsForQt5.kalk
];
environment = {
systemPackages = with pkgs; [
libsForQt5.kate
libsForQt5.kalk
];
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
elisa
gwenview
okular
khelpcenter
];
plasma5.excludePackages = with pkgs.libsForQt5; [
elisa
gwenview
okular
khelpcenter
];
};
programs = {
dconf.enable = true;
@ -55,8 +56,8 @@ in {
};
home-manager.users = {
#vinzenz = lib.mkIf config.my.home.vinzenz.enable applyKdeUserSettings;
#ronja = lib.mkIf config.my.home.ronja.enable applyKdeUserSettings;
vinzenz = lib.mkIf config.my.home.vinzenz.enable applyKdeUserSettings;
ronja = lib.mkIf config.my.home.ronja.enable applyKdeUserSettings;
};
};
}