mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
17 lines
361 B
Nix
17 lines
361 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./auto.nix
|
|
];
|
|
|
|
services.xserver.enable = true;
|
|
|
|
# Automatically log in.
|
|
test-support.displayManager.auto.enable = true;
|
|
|
|
# Use IceWM as the window manager.
|
|
# Don't use a desktop manager.
|
|
services.displayManager.defaultSession = lib.mkDefault "none+icewm";
|
|
services.xserver.windowManager.icewm.enable = true;
|
|
}
|