Files
dotfiles/modules/kde.nix
2025-05-16 20:05:13 +03:00

24 lines
524 B
Nix

{ ... }: {
# Enable the KDE Plasma Desktop Environment.
services.displayManager.sddm.enable = true;
services.desktopManager.plasma6.enable = true;
services.displayManager.sddm.settings = {
Autologin = {
Session = "plasma.desktop";
User = "kyren";
};
};
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
services.xserver.enable = true;
# Configure keymap in X11
services.xserver.xkb = {
layout = "us";
variant = "";
};
}