dendritic-example/modules/eric.nix
2025-07-22 20:55:21 +01:00

16 lines
259 B
Nix

{ config, ... }:
{
flake = {
meta.eric.username = "eric";
modules = {
nixos.eric = {
users.users.${config.flake.meta.eric.username} = {
isNormalUser = true;
initialPassword = "";
};
};
};
};
}