about summary refs log blame commit diff
path: root/users/grfn/system/system/modules/xserver.nix
blob: 35ee44112ea18f2dc942601fcdbccf6bfa71a3f5 (plain) (tree)
1
2
3
4
5
6
7
8
9





                                    


                           

                                 


                                   

    
{ config, pkgs, ... }:
{
  # Enable the X11 windowing system.
  services.xserver = {
    enable = true;
    layout = "us";

    libinput.enable = true;

    displayManager = {
      defaultSession = "none+i3";
    };

    windowManager.i3.enable = true;
  };
}