fix (user config): add first user config data

This commit is contained in:
Kirill Samoylenkov 2025-09-26 22:05:03 +05:00
parent 69af5ab554
commit 8c0f91301e
2 changed files with 22 additions and 0 deletions

22
users/geekiot/data.nix Normal file
View file

@ -0,0 +1,22 @@
{
hostName,
userName,
systemArch,
deviceName,
}:
let
homeDir = "/home/${userName}";
in
{
info = {
inherit userName;
fullName = "Kirill Samoylenkov";
email = "geekiot@proton.me";
};
paths = {
inherit homeDir;
sopsKeyFile = "${homeDir}/.security/sops/age/keys.txt";
};
}

View file