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

{

  users.users.Rory = {
    isNormalUser = true;
    extraGroups = [ "wheel" ];
    packages = with pkgs; [
    ];
    initialPassword = "password";
  };
}