os/users/yule/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1,010 B
Nix
Raw Normal View History

2022-08-13 16:53:50 +00:00
{
2023-01-28 21:27:52 +00:00
config,
pkgs,
lib,
...
}: let
psCfg = config.pub-solar;
in {
2022-08-13 16:53:50 +00:00
config = {
pub-solar = {
# These are your personal settings
# The only required settings are `name` and `password`,
# The rest is used for programs like git
user = {
name = "yule";
description = "b12f";
2023-10-11 12:33:38 +00:00
password = "$y$j9T$x1nyqcXw/1iYKo3054cdB1$0TOuyE5t5ZV6z9Gzl9zIrmZGADBxupnwcUMTcMtMa73";
2023-10-26 12:09:11 +00:00
passwordlessSudo = true;
2022-08-13 16:53:50 +00:00
fullName = "Benjamin Bädorf";
email = "hello@benjaminbaedorf.eu";
gpgKeyId = "4406E80E13CD656C";
2022-08-13 16:58:51 +00:00
publicKeys = [
2022-10-01 23:00:49 +00:00
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHx4A8rLYmFgTOp1fDGbbONN8SOT0l5wWrUSYFUcVzMPTyfdT23ZVIdVD5yZCySgi/7PSh5mVmyLIZVIXlNrZJg= @b12f Yubi Main"
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEST9eyAY3nzGYNnqDYfWHu+89LZsOjyKHMqCFvtP7vrgB7F7JbbECjdjAXEOfPDSCVwtMMpq8JJXeRMjpsD0rw= @b12f Yubi Backup"
2022-08-13 16:58:51 +00:00
];
2022-08-13 16:53:50 +00:00
};
};
};
}