lab/nix-dendritic-example/modules/eric.nix

17 lines
259 B
Nix
Raw Normal View History

2025-07-22 20:55:21 +01:00
{ config, ... }:
{
flake = {
meta.eric.username = "eric";
modules = {
nixos.eric = {
users.users.${config.flake.meta.eric.username} = {
isNormalUser = true;
initialPassword = "";
};
};
};
};
}