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/server/data/default.nix

25 lines
292 B
Nix

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