summary refs log tree commit diff
path: root/nixos/modules/profiles/graphical.nix
blob: fba756391b11826d298e3ec3e3a21bce16b305c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# This module defines a NixOS configuration with the Plasma 5 desktop.
# It's used by the graphical installation CD.

{ pkgs, ... }:

{
  services.xserver = {
    enable = true;
    displayManager.sddm.enable = true;
    desktopManager.plasma5 = {
      enable = true;
      enableQt4Support = false;
    };
    libinput.enable = true; # for touchpad support on many laptops
  };

  environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
}