9 lines
155 B
Nix
9 lines
155 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./common.nix ];
|
|
|
|
# use xserver without display manager
|
|
services.xserver.displayManager.startx.enable = true;
|
|
}
|