lemp11: add luke user
This commit is contained in:
parent
62bd1c3bfe
commit
7d4f19655b
|
@ -16,6 +16,7 @@
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
../../users/eric
|
../../users/eric
|
||||||
|
../../users/luke
|
||||||
];
|
];
|
||||||
|
|
||||||
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||||
|
|
12
nix/users/luke/default.nix
Normal file
12
nix/users/luke/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
let
|
||||||
|
username = "luke";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
users.users.${username} = {
|
||||||
|
description = "Luke Davies";
|
||||||
|
extraGroups = [ ];
|
||||||
|
initialPassword = username;
|
||||||
|
isNormalUser = true;
|
||||||
|
packages = [ ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue