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

17 lines
287 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
];
2024-04-08 20:32:17 +02:00
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";
};
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
}