forked from pub-solar/os
22 lines
954 B
Nix
22 lines
954 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
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";
|
|
password = "$6$guLp1v0G0TxGThXX$y7YeEcYjFpN6gutLCbvAkqppOVLYZjfo4DxofrMm6a9MIjVoKKaY20UzityJsHbQU4THIFfj8gLWVOjyjL.P2.";
|
|
passwordlessSudo = true;
|
|
fullName = "Pub Solar";
|
|
email = "teutat3s@pub.solar";
|
|
publicKeys = [
|
|
"ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFro/k4Mgqyh8yV/7Zwjc0dv60ZM7bROBU9JNd99P/4co6fxPt1pJiU/pEz2Dax/HODxgcO+jFZfvPEuLMCeAl0= YubiKey #10593996 PIV Slot 9a"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHcU6KPy4b1MQXd6EJhcYwbJu7E+0IrBZF/IP6T7gbMf teutat3s@dumpyourvms"
|
|
];
|
|
};
|
|
};
|
|
home-manager.users.pub-solar.services.gpg-agent.pinentryPackage = pkgs.pinentry-curses;
|
|
}
|