From 841c4fface1b2d71414051daaf79983b65e940c6 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 21 Nov 2025 10:51:09 +0100 Subject: [PATCH] add yubikey ssh key --- common/home/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/home/default.nix b/common/home/default.nix index 8a641bb..2d0d2a9 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -58,9 +58,8 @@ in file = { # makes yubikey stuff work ".gnupg/scdaemon.conf".text = "disable-ccid"; + ".ssh/id_rsa_yubikey.pub".text = builtins.elemAt (import ../ssh-keys.nix) 0; # I don't want the directory directly in home, even though I only go to it via the symlink - "programming".source = - config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/Documents/programming/"; }; # haha, now I can set my home folder like this homeDirectory = "/home/${me.nickname}";