10 lines
117 B
Nix
10 lines
117 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
autorun = true;
|
||
|
excludePackages = [ pkgs.xterm ];
|
||
|
};
|
||
|
}
|