nixos-config/common/components/de/plasma6.nix
2024-04-22 21:24:54 +02:00

26 lines
425 B
Nix

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