24 lines
534 B
Nix
24 lines
534 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./xserver.nix
|
|
./sddm.nix
|
|
];
|
|
# Enable the X11 windowing system.
|
|
services.xserver.enable = true;
|
|
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
services.xserver.desktopManager.plasma5.enable = true;
|
|
services.xserver.displayManager.defaultSession = "plasmawayland";
|
|
|
|
programs.kdeconnect.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
libsForQt5.lightly
|
|
libsForQt5.qtstyleplugin-kvantum
|
|
libsForQt5.kwindowsystem
|
|
catppuccin-kvantum
|
|
catppuccin-kde
|
|
];
|
|
}
|