lemp11: add eric user

This commit is contained in:
Oliver Davies 2025-01-01 14:49:00 +00:00
parent aad706aad6
commit 985b3d10cf
2 changed files with 14 additions and 0 deletions
nix/users/eric

View file

@ -0,0 +1,12 @@
let
username = "eric";
in
{
users.users.${username} = {
description = "Eric Davies";
extraGroups = [ ];
initialPassword = "eric";
isNormalUser = true;
packages = [ ];
};
}