python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / profiles / graphical.nix
blobd80456cede565660453c013c3c9ea1c408f451cf
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     displayManager.sddm.enable = true;
10     desktopManager.plasma5 = {
11       enable = true;
12     };
13     libinput.enable = true; # for touchpad support on many laptops
14   };
16   # Enable sound in virtualbox appliances.
17   hardware.pulseaudio.enable = true;
19   environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];