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