nix-config/modules/nixos/desktop/kde.nix

25 lines
468 B
Nix
Raw Normal View History

{
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;
# On-screen keyboard dependency
environment.systemPackages = with pkgs; [
maliit-keyboard
];
}