os/users/pub-solar/default.nix
Benjamin Bädorf 329bd51735
All checks were successful
continuous-integration/drone/push Build is passing
chore: towards a working build
2023-09-29 22:01:03 +02:00

17 lines
537 B
Nix

{config, ...}: {
pub-solar = {
# These are your personal settings
# The only required settings are `name` and `password`,
# for convenience, use publicKeys to add your SSH keys
# The rest is used for programs like git
user = {
name = "pub-solar";
# default password = pub-solar
password = "$6$Kv0BCLU2Jg7GN8Oa$hc2vERKCbZdczFqyHPfgCaleGP.JuOWyd.bfcIsLDNmExGXI6Rnkze.SWzVzVS311KBznN/P4uUYAUADXkVtr.";
fullName = "Pub Solar";
email = "iso@pub.solar";
publicKeys = [];
};
};
}