nixos-config/common/components/de/plasma6.nix
2024-05-30 20:34:42 +02:00

15 lines
303 B
Nix

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