lemp11: add luke user

This commit is contained in:
Oliver Davies 2025-01-01 17:58:56 +00:00
parent 62bd1c3bfe
commit 7d4f19655b
2 changed files with 13 additions and 0 deletions

View file

@ -16,6 +16,7 @@
./hardware-configuration.nix
../../users/eric
../../users/luke
];
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];

View file

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