mirror of https://git.jolheiser.com/dotnix.git
10 lines
191 B
Nix
10 lines
191 B
Nix
|
{ pkgs, ... }: {
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
displayManager.lightdm.enable = true;
|
||
|
desktopManager.cinnamon.enable = true;
|
||
|
layout = "us";
|
||
|
xkbVariant = "";
|
||
|
};
|
||
|
}
|