mirror of
https://github.com/0x1d/nix.git
synced 2025-12-14 22:02:25 +01:00
10 lines
187 B
Nix
10 lines
187 B
Nix
{ pkgs, ... }: {
|
|
services.xserver = {
|
|
enable = true;
|
|
layout = "ch";
|
|
xkbVariant = "";
|
|
displayManager.sddm.enable = true;
|
|
desktopManager.plasma5.enable = true;
|
|
};
|
|
}
|