nixos-configuration/kde.nix

51 lines
783 B
Nix
Raw Normal View History

2023-08-27 13:28:13 +02:00
{
2023-08-27 13:34:38 +02:00
config,
pkgs,
...
}: {
2023-08-27 13:28:13 +02:00
services = {
# Enable the KDE Plasma Desktop Environment.
xserver = {
desktopManager.plasma5.enable = true;
2023-08-27 22:48:32 +02:00
displayManager = {
sddm.enable = true;
defaultSession = "plasmawayland";
};
2023-08-27 13:28:13 +02:00
};
};
2023-09-03 17:23:55 +02:00
environment.systemPackages = with pkgs; [
libsForQt5.kate
2023-09-05 21:19:58 +02:00
libsForQt5.kalk
2023-09-03 17:23:55 +02:00
];
2023-08-27 22:48:32 +02:00
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
elisa
gwenview
okular
khelpcenter
];
2023-09-01 17:36:49 +02:00
programs = {
dconf.enable = true;
partition-manager.enable = true;
};
2023-08-27 22:48:32 +02:00
2023-08-27 13:34:38 +02:00
home-manager.users.vinzenz = {
config,
pkgs,
...
}: {
home = {
packages = with pkgs; [
];
};
2023-08-27 22:48:32 +02:00
2023-08-27 13:34:38 +02:00
services.kdeconnect = {
2023-08-27 13:28:13 +02:00
enable = true;
indicator = true;
};
};
}