mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
94bec239d5
Without this the graphical installer has no way to open the manual. You can fix it yourself by installing any HTML browser but this might be unfamiliar to users new to NixOS and without any other way to open the manual. The downside is it will also increase download sizes. Fixes #46537
16 lines
396 B
Nix
16 lines
396 B
Nix
# 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;
|
|
libinput.enable = true; # for touchpad support on many laptops
|
|
};
|
|
|
|
environment.systemPackages = [ pkgs.glxinfo pkgs.firefox ];
|
|
}
|