Evie Litherland-Smith
05d19c1813
Split system-level sway and plasma config into separate files, move sway-specific home-level config to sway file. Only truly common desktop components are kept in common spaces. This allows much easier switching between using KDE Plasma and Sway.
15 lines
338 B
Nix
15 lines
338 B
Nix
{pkgs, ...}: {
|
|
imports = [./default.nix];
|
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [plasma-browser-integration];
|
|
services = {
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
desktopManager.plasma6 = {
|
|
enable = true;
|
|
enableQt5Integration = true;
|
|
};
|
|
};
|
|
}
|