summary refs log blame commit diff
path: root/nixos/modules/profiles/demo.nix
blob: ef6fd77b5f8d5367ad5074858e43d92bf524bd31 (plain) (tree)
1
2
3
4
5
6
7
8
9


                      
                                

                         

                                        
                                
                        
                 

      
{ config, pkgs, ... }:

{
  imports = [ ./graphical.nix ];

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