26 lines
425 B
Nix
26 lines
425 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./plasma-packages.nix
|
|
];
|
|
|
|
services.displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
|
|
defaultSession = "plasma";
|
|
};
|
|
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
# Use ksshaskpass to access stored secrets
|
|
environment.sessionVariables = rec {
|
|
GIT_ASKPASS = "ksshaskpass";
|
|
};
|
|
|
|
programs.kdeconnect = {
|
|
enable = false;
|
|
};
|
|
}
|