mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 02:13:06 +01:00
19 lines
364 B
Nix
19 lines
364 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# Enable the x11 windowing system
|
|
services.xserver.enable = true;
|
|
|
|
# Enable the SDDM display manager.
|
|
services.displayManager.sddm.enable = true;
|
|
|
|
# Enable the KDE Plasma 6 desktop environment.
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
# Enable KDE-Connect
|
|
programs.kdeconnect.enable = true;
|
|
}
|