nixos-config/common/components/de/plasma6.nix

15 lines
303 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{pkgs, ...}: {
imports = [
2024-05-30 20:34:42 +02:00
./sddm.nix
2024-04-17 20:39:12 +02:00
./plasma-packages.nix
];
2024-04-08 20:32:17 +02:00
2024-05-30 20:34:42 +02:00
services.displayManager.defaultSession = "plasma";
2024-04-17 20:39:12 +02:00
services.desktopManager.plasma6.enable = true;
# Use ksshaskpass to access stored secrets
environment.sessionVariables = rec {
GIT_ASKPASS = "ksshaskpass";
};
2024-04-08 20:32:17 +02:00
}