mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
44 lines
687 B
Nix
44 lines
687 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services = {
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
xserver = {
|
|
desktopManager.plasma5.enable = true;
|
|
|
|
displayManager = {
|
|
sddm.enable = true;
|
|
defaultSession = "plasmawayland";
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.plasma5.excludePackages = with pkgs.libsForQt5; [
|
|
elisa
|
|
gwenview
|
|
okular
|
|
khelpcenter
|
|
];
|
|
|
|
programs.dconf.enable = true;
|
|
programs.partition-manager.enable = true;
|
|
|
|
home-manager.users.vinzenz = {
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home = {
|
|
packages = with pkgs; [
|
|
];
|
|
};
|
|
|
|
services.kdeconnect = {
|
|
enable = true;
|
|
indicator = true;
|
|
};
|
|
};
|
|
}
|