1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 08:29:20 +03:00
nixpkgs/nixos/modules/profiles/graphical.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
430 B
Nix
Raw Normal View History

# This module defines a NixOS configuration with the Plasma 5 desktop.
# It's used by the graphical installation CD.
{ pkgs, ... }:
{
services.xserver = {
enable = true;
desktopManager.plasma5.enable = true;
};
services = {
displayManager.sddm.enable = true;
libinput.enable = true; # for touchpad support on many laptops
};
2024-07-04 15:30:03 +02:00
environment.systemPackages = [
pkgs.mesa-demos
pkgs.firefox
];
}