*: add config
This commit is contained in:
commit
80c42c7e45
22 changed files with 3229 additions and 0 deletions
23
configuration/steveej-laptop/user.nix
Normal file
23
configuration/steveej-laptop/user.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
imports =
|
||||
[
|
||||
../common/user/root.nix
|
||||
];
|
||||
|
||||
users.extraUsers.steveej = {
|
||||
uid = 1000;
|
||||
isNormalUser = true;
|
||||
home = "/home/steveej";
|
||||
extraGroups = [ "wheel" "libvirtd" "networkmanager" ];
|
||||
hashedPassword = "removed";
|
||||
};
|
||||
users.extraUsers.steveej2 = {
|
||||
uid = 1001;
|
||||
isNormalUser = true;
|
||||
home = "/home/steveej2";
|
||||
extraGroups = [ "wheel" "libvirtd" ];
|
||||
hashedPassword = "removed";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue