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

{ config, pkgs, ... }:

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

  environment.systemPackages = [ pkgs.glxinfo ];
}