This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/users/template/data/default.nix

23 lines
260 B
Nix

{
hostName,
userName,
systemArch,
deviceName,
}:
let
homeDir = "/home/${userName}";
in
{
info = {
inherit userName;
email = "...";
};
paths = {
inherit homeDir;
};
device = {
inherit deviceName hostName systemArch;
};
}