12 lines
196 B
Nix
12 lines
196 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.xserver = {
|
|
layout = "at";
|
|
xkbVariant = "";
|
|
enable = true;
|
|
displayManager.sddm.enable = true;
|
|
desktopManager.plasma5.enable = true;
|
|
};
|
|
}
|