Evie Litherland-Smith
2eba010954
Means kwallet is unlocked at login so no issues with startup programs
19 lines
340 B
Nix
19 lines
340 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
plasma-browser-integration
|
|
konsole
|
|
kate
|
|
];
|
|
services = {
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
desktopManager.plasma6 = {
|
|
enable = true;
|
|
enableQt5Integration = true;
|
|
};
|
|
};
|
|
}
|