nixos/nixos/common/plasma.nix

25 lines
518 B
Nix
Raw Normal View History

{config, pkgs, ...}:
{
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the KDE Plasma Desktop Environment.
services.xserver.displayManager.sddm.enable = true;
services.xserver.desktopManager.plasma5.enable = true;
2023-03-29 11:48:08 +01:00
environment.systemPackages = with pkgs; [
catppuccin-kde
catppuccin-gtk
catppuccin-cursors
];
# Configure keymap in X11
services.xserver = {
layout = "gb";
xkbVariant = "";
};
# Configure console keymap
console.keyMap = "uk";
}