os/users/yule/default.nix

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

26 lines
607 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;
2024-03-19 18:29:57 +00:00
fullName = "yule";
email = "yule@benjaminbaedorf.eu";
gpgKeyId = "FC623BBCBD2604D5CC9D90BAE77B0AAAF0D9B76B";
2022-08-13 16:53:50 +00:00
};
};
};
}