Evie Litherland-Smith
14d8fba769
Enable autoLogin with sddm/plasma Move some environment variable definitions around
22 lines
461 B
Nix
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;
|
|
};
|
|
};
|
|
}
|