infra/configuration/steveej-laptop/user.nix

24 lines
476 B
Nix
Raw Normal View History

2015-10-23 01:26:53 +02:00
{ config, pkgs, ... }:
{
imports =
[
../common/user/root.nix
];
users.extraUsers.steveej = {
uid = 1000;
isNormalUser = true;
home = "/home/steveej";
extraGroups = [ "wheel" "libvirtd" "networkmanager" "vboxusers" ];
2015-10-23 01:26:53 +02:00
hashedPassword = "removed";
};
users.extraUsers.steveej2 = {
uid = 1001;
isNormalUser = true;
home = "/home/steveej2";
extraGroups = [ "wheel" "libvirtd" ];
hashedPassword = "removed";
};
}