Personal-use NixOS configuration

Split Yubikey configuration into server module

+10 -1
+9
config/server/yubikey.nix
··· 1 + { 2 + programs.gnupg.agent = { 3 + enable = true; 4 + 5 + settings = { 6 + no-autostart = true; 7 + }; 8 + }; 9 + }
+1 -1
hosts/index/users/encode42.nix
··· 7 7 imports = [ 8 8 (flakeRoot + /users/encode42/common) 9 9 10 - (flakeRoot + /config/common/yubikey.nix) 10 + (flakeRoot + /config/server/yubikey.nix) 11 11 ]; 12 12 13 13 home-manager.users.encode42 = {