aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles/x11/default.nix
blob: 52e79753c10a7c9847e85c82219d101c68919f65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ pkgs, ... }:
{
  services = {
    xserver = {
      enable = true;
      xkb.layout = "us";
      displayManager.lightdm.enable = true;
      windowManager.bspwm.enable = true;
    };

    displayManager.autoLogin = {
      enable = true;
      user = "tdback";
    };
  };

  hardware.graphics.enable32Bit = true;

  environment.systemPackages = with pkgs.xorg; [
    libX11
    xset
  ];

  fonts.packages = with pkgs; [
    dejavu_fonts
    dina-font
    iosevka-comfy.comfy-motion-fixed
    liberation_ttf
    noto-fonts
    noto-fonts-emoji
    ubuntu_font_family
  ];
}