nix-config/systems/common/core/xorg_plasma.nix

20 lines
431 B
Nix
Raw Permalink Normal View History

{
services = {
xserver = {
# Enable the X11 windowing system
enable = true;
# Enable Keymap
xkb = {
layout = "us";
# variant = "qwerty";
# model = "thinkpad";
};
};
# KDE X
displayManager.sddm.enable = true;
2024-08-02 05:17:25 +00:00
desktopManager.plasma6.enable = true;
2024-07-20 08:40:53 +00:00
};
}