vuls: init at 0.27.0
[NixPkgs.git] / nixos / modules / profiles / graphical.nix
blobf96b11b35367233234690c487de29ecb99014f6f
1 # This module defines a NixOS configuration with the Plasma 5 desktop.
2 # It's used by the graphical installation CD.
4 { pkgs, ... }:
7   services.xserver = {
8     enable = true;
9     desktopManager.plasma5.enable = true;
10   };
12   services = {
13     displayManager.sddm.enable = true;
14     libinput.enable = true; # for touchpad support on many laptops
15   };
17   environment.systemPackages = [ pkgs.mesa-demos pkgs.firefox ];