26 lines
607 B
Nix
26 lines
607 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
psCfg = config.pub-solar;
|
|
in {
|
|
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";
|
|
password = "$y$j9T$k3SMmHUdr4V/VTo9yja5J1$u0ZbZ8y3Z7WbVrkK6ps0SWnvLEeLsn6C9EM7ChK8Pn1";
|
|
passwordlessSudo = true;
|
|
fullName = "yule";
|
|
email = "yule@benjaminbaedorf.eu";
|
|
gpgKeyId = "FC623BBCBD2604D5CC9D90BAE77B0AAAF0D9B76B";
|
|
};
|
|
};
|
|
};
|
|
}
|