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

23 lines
391 B
Nix
Raw Normal View History

2024-04-17 22:28:27 +02:00
{pkgs, ...}: {
imports = [
2024-04-17 20:39:12 +02:00
./plasma-packages.nix
];
# Enable Xorg/Plasma5
2024-04-08 20:32:17 +02:00
services.xserver = {
enable = true;
displayManager.sddm.enable = true;
desktopManager.plasma5.enable = true;
};
2024-04-17 20:39:12 +02:00
# Use ksshaskpass to access stored secrets
environment.sessionVariables = rec {
2024-04-17 22:28:27 +02:00
GIT_ASKPASS = "ksshaskpass";
2024-04-17 20:39:12 +02:00
};
programs.kdeconnect = {
2024-04-22 20:48:35 +02:00
enable = false;
2024-04-17 20:39:12 +02:00
};
2024-04-08 20:32:17 +02:00
}