Evie Litherland-Smith
506163ff37
Split system-level sway config to separate file, imported by system/desktop.nix, and add plasma.nix at the same level
15 lines
307 B
Nix
15 lines
307 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.plasma6.excludePackages = [ pkgs.kdePackages.plasma-browser-integration ];
|
|
services = {
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
desktopManager.plasma6 = {
|
|
enable = true;
|
|
enableQt5Integration = true;
|
|
};
|
|
};
|
|
}
|