1# This module defines a NixOS configuration with the Plasma 5 desktop.
2# It's used by the graphical installation CD.
3
4{ pkgs, ... }:
5
6{
7 services.xserver = {
8 enable = true;
9 desktopManager.plasma5.enable = true;
10 };
11
12 services = {
13 displayManager.sddm.enable = true;
14 libinput.enable = true; # for touchpad support on many laptops
15 };
16
17 # Enable sound in virtualbox appliances.
18 hardware.pulseaudio.enable = true;
19
20 environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
21}