puzzlevision/modules/nixos/desktop/kde.nix
Jo 339bd28d1d [general] add work and gaming user, tweak configs
feat: added new ssh configuration modules for home-manager

feat: add user work with configurations for my work environment

feat: added gaming user with configuration for my gaming enviornment eg. lutris and steam
Signed-off-by: Jo <johannesreckers2006@gmail.com>
2024-05-20 18:08:16 +02:00

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