From eb26f898af30470fd74817f7f3ac22365e6f4a22 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Mon, 1 May 2023 17:27:46 -0400 Subject: [PATCH] Switch levitation over to ssh signing --- info/ssh-keys.nix | 3 +++ machines/levitation/home.nix | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/info/ssh-keys.nix b/info/ssh-keys.nix index 3d0009e..018d743 100644 --- a/info/ssh-keys.nix +++ b/info/ssh-keys.nix @@ -3,6 +3,9 @@ rec { # yubikey ssh key "yubikey" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILRs6zVljIlQEZ8F+aEBqqbpeFJwCw3JdveZ8TQWfkev cardno:000615938515"; + # levitation ssh key + "levitation" = + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG0zeLTlg++shIYcqxksDVkTtHS3MIvlqPIIW+9pufQa nathan@levitation"; # WSL key "wsl" = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGXEV5lvLQ1CcPuJANv5AiYxtcRFEYXD5nODCazWnYC5 nathan@mccarty.io"; diff --git a/machines/levitation/home.nix b/machines/levitation/home.nix index 6793b62..9f205f4 100644 --- a/machines/levitation/home.nix +++ b/machines/levitation/home.nix @@ -3,7 +3,13 @@ services = { email = { enable = true; }; }; config = { isDesktop = true; }; programs = { - util = { wine = true; }; + util = { + wine = true; + git = { + gpgSign = false; + sshSign = true; + }; + }; games = { launcher = true; }; media.nicotineService = true; };