2021-10-24 20:03:28 +00:00
|
|
|
{ hmUsers, ... }:
|
|
|
|
{
|
|
|
|
home-manager.users = { inherit (hmUsers) pub-solar; };
|
|
|
|
|
|
|
|
pub-solar = {
|
|
|
|
# These are your personal settings
|
|
|
|
# The only required settings are `name` and `password`,
|
2022-01-31 16:45:26 +00:00
|
|
|
# for convenience, use publicKeys to add your SSH keys
|
2021-10-24 20:03:28 +00:00
|
|
|
# The rest is used for programs like git
|
|
|
|
user = {
|
|
|
|
name = "pub-solar";
|
2022-02-02 20:23:35 +00:00
|
|
|
# default password = pub-solar
|
2021-10-24 20:03:28 +00:00
|
|
|
password = "$6$Kv0BCLU2Jg7GN8Oa$hc2vERKCbZdczFqyHPfgCaleGP.JuOWyd.bfcIsLDNmExGXI6Rnkze.SWzVzVS311KBznN/P4uUYAUADXkVtr.";
|
|
|
|
fullName = "Pub Solar";
|
|
|
|
email = "iso@pub.solar";
|
2022-02-02 20:23:35 +00:00
|
|
|
publicKeys = [ ];
|
2021-10-24 20:03:28 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|