2024-09-27 16:19:42 +01:00
|
|
|
{ pkgs, username, ... }:
|
2024-09-27 11:41:52 +01:00
|
|
|
{
|
2024-09-27 16:19:42 +01:00
|
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
|
|
|
plasma-browser-integration
|
|
|
|
konsole
|
|
|
|
kate
|
|
|
|
];
|
2024-09-27 11:41:52 +01:00
|
|
|
services = {
|
2024-09-27 16:19:42 +01:00
|
|
|
displayManager = {
|
|
|
|
autoLogin.user = username;
|
|
|
|
sddm = {
|
|
|
|
enable = true;
|
|
|
|
wayland.enable = true;
|
|
|
|
};
|
2024-09-27 11:41:52 +01:00
|
|
|
};
|
|
|
|
desktopManager.plasma6 = {
|
|
|
|
enable = true;
|
|
|
|
enableQt5Integration = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|