mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
7dc84e1824
Slim is abandoned and won't work with wayland. It's in our best interest to use the display-manager that makes most sense for Plasma5, sddm. We've already moved on from it being default in #30890 and the graphical.nix profile, which the virtualbox profile uses, has sddm anyway.
20 lines
342 B
Nix
20 lines
342 B
Nix
# This module defines a NixOS installation CD that contains X11 and
|
|
# GNOME 3.
|
|
|
|
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ./installation-cd-graphical-base.nix ];
|
|
|
|
services.xserver.desktopManager.gnome3.enable = true;
|
|
|
|
# Auto-login as root.
|
|
services.xserver.displayManager.gdm.autoLogin = {
|
|
enable = true;
|
|
user = "root";
|
|
};
|
|
|
|
}
|