17 lines
259 B
Nix
17 lines
259 B
Nix
|
{ config, ... }:
|
||
|
|
||
|
{
|
||
|
flake = {
|
||
|
meta.eric.username = "eric";
|
||
|
|
||
|
modules = {
|
||
|
nixos.eric = {
|
||
|
users.users.${config.flake.meta.eric.username} = {
|
||
|
isNormalUser = true;
|
||
|
initialPassword = "";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|