nixos-config/common/components/de/plasma5.nix
2024-04-22 21:01:29 +02:00

23 lines
391 B
Nix

{pkgs, ...}: {
imports = [
./plasma-packages.nix
];
# Enable Xorg/Plasma5
services.xserver = {
enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
};
# Use ksshaskpass to access stored secrets
environment.sessionVariables = rec {
GIT_ASKPASS = "ksshaskpass";
};
programs.kdeconnect = {
enable = false;
};
}