Switch levitation over to ssh signing

This commit is contained in:
Nathan McCarty 2023-05-01 17:27:46 -04:00
parent dac5135308
commit eb26f898af
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
2 changed files with 10 additions and 1 deletions

View File

@ -3,6 +3,9 @@ rec {
# yubikey ssh key # yubikey ssh key
"yubikey" = "yubikey" =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILRs6zVljIlQEZ8F+aEBqqbpeFJwCw3JdveZ8TQWfkev cardno:000615938515"; "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILRs6zVljIlQEZ8F+aEBqqbpeFJwCw3JdveZ8TQWfkev cardno:000615938515";
# levitation ssh key
"levitation" =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0zeLTlg++shIYcqxksDVkTtHS3MIvlqPIIW+9pufQa nathan@levitation";
# WSL key # WSL key
"wsl" = "wsl" =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGXEV5lvLQ1CcPuJANv5AiYxtcRFEYXD5nODCazWnYC5 nathan@mccarty.io"; "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGXEV5lvLQ1CcPuJANv5AiYxtcRFEYXD5nODCazWnYC5 nathan@mccarty.io";

View File

@ -3,7 +3,13 @@
services = { email = { enable = true; }; }; services = { email = { enable = true; }; };
config = { isDesktop = true; }; config = { isDesktop = true; };
programs = { programs = {
util = { wine = true; }; util = {
wine = true;
git = {
gpgSign = false;
sshSign = true;
};
};
games = { launcher = true; }; games = { launcher = true; };
media.nicotineService = true; media.nicotineService = true;
}; };