summaryrefslogtreecommitdiffstats
path: root/modules/lass/xserver-lass.nix
blob: 286236128854f744d6620bb99a9f467ec308a937 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, pkgs, ... }:

let
  mainUser = config.users.extraUsers.mainUser;

in {
  imports = [
    ../tv/xserver.nix
  ];
  services.xserver.displayManager.auto.user = mainUser.name;
}