nixos/nixos/desktop/plasma.nix

28 lines
556 B
Nix

{ config, pkgs, ... }:
{
imports = [
./common.nix
];
# 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;
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";
}