2023-08-02 10:23:16 +01:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
imports = [ ./desktop.nix ];
|
2023-08-18 12:19:52 +01:00
|
|
|
environment.systemPackages = with pkgs;
|
|
|
|
with libsForQt5; [
|
2023-08-21 08:20:45 +01:00
|
|
|
plasma-wayland-protocols
|
|
|
|
plasma-integration
|
|
|
|
plasma-browser-integration
|
|
|
|
plasma-thunderbolt
|
|
|
|
kwin-tiling
|
2023-08-18 12:19:52 +01:00
|
|
|
krdc
|
|
|
|
];
|
|
|
|
services.xserver = {
|
|
|
|
enable = true;
|
|
|
|
desktopManager.plasma5.enable = true;
|
|
|
|
displayManager.sddm = {
|
|
|
|
enable = true;
|
|
|
|
settings = { General = { InputMethod = ""; }; };
|
|
|
|
};
|
|
|
|
};
|
2023-08-02 10:23:16 +01:00
|
|
|
}
|