nixos-config/common/de/plasma6.nix

27 lines
451 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
# Enable Wayland/Plasma6
services.displayManager = {
sddm = {
enable = true;
wayland.enable = true;
2024-04-08 20:32:17 +02:00
};
defaultSession = "plasma";
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 = {
enable = true;
};
2024-04-08 20:32:17 +02:00
}