fix (user config): add first user config data
This commit is contained in:
parent
69af5ab554
commit
8c0f91301e
2 changed files with 22 additions and 0 deletions
22
users/geekiot/data.nix
Normal file
22
users/geekiot/data.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
0
users/geekiot/packages-config.nix
Normal file
0
users/geekiot/packages-config.nix
Normal file
Reference in a new issue