24 lines
569 B
Nix
24 lines
569 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
{
|
|
services.xserver.enable = true; # optional
|
|
|
|
# Configure keymap in X11
|
|
# services.xserver.xkb.layout = "us";
|
|
# services.xserver.xkb.options = "eurosign:e,caps:escape";
|
|
|
|
services.displayManager.sddm.enable = true;
|
|
services.displayManager.sddm.wayland.enable = true;
|
|
services.desktopManager.plasma6.enable = true;
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[ maliit-keyboard ] ++ (with kdePackages; [
|
|
sddm-kcm
|
|
plasma-disks
|
|
partitionmanager
|
|
filelight
|
|
ffmpegthumbs
|
|
kcalc
|
|
]);
|
|
}
|