nixos/system/desktop/plasma.nix
Evie Litherland-Smith 14d8fba769 Enable xserver so X11 forwarding works properly
Enable autoLogin with sddm/plasma

Move some environment variable definitions around
2024-08-05 14:49:37 +01:00

22 lines
461 B
Nix

{ pkgs, ... }:
{
imports = [ ./default.nix ];
environment = {
plasma6.excludePackages = with pkgs.kdePackages; [ plasma-browser-integration ];
sessionVariables.QT_QPA_PLATFORM = "wayland";
};
services = {
displayManager = {
autoLogin.enable = true;
sddm = {
enable = true;
wayland.enable = true;
};
};
desktopManager.plasma6 = {
enable = true;
enableQt5Integration = true;
};
};
}