2024-07-30 15:06:34 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./default.nix ];
|
2024-08-05 14:49:37 +01:00
|
|
|
environment = {
|
|
|
|
plasma6.excludePackages = with pkgs.kdePackages; [ plasma-browser-integration ];
|
|
|
|
sessionVariables.QT_QPA_PLATFORM = "wayland";
|
|
|
|
};
|
2024-07-10 08:27:17 +01:00
|
|
|
services = {
|
2024-08-06 06:29:00 +01:00
|
|
|
displayManager.sddm = {
|
|
|
|
enable = true;
|
|
|
|
wayland.enable = true;
|
2024-07-10 08:27:17 +01:00
|
|
|
};
|
|
|
|
desktopManager.plasma6 = {
|
|
|
|
enable = true;
|
|
|
|
enableQt5Integration = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|