summary refs log tree commit diff
path: root/nixos/modules/profiles/demo.nix
blob: ef6fd77b5f8d5367ad5074858e43d92bf524bd31 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, pkgs, ... }:

{
  imports = [ ./graphical.nix ];

  users.extraUsers.demo =
    { isNormalUser = true;
      description = "Demo user account";
      extraGroups = [ "wheel" ];
      password = "demo";
      uid = 1000;
    };
}