Compare commits

..

No commits in common. "25d28d0ace0fbcd1b9003cabe2b290fd5bc0dacd" and "9a68486370ee4c997bb764dedf4c09989633d3af" have entirely different histories.

2 changed files with 7 additions and 2 deletions

View file

@ -3,11 +3,16 @@
fish.enable = true; fish.enable = true;
gnupg.agent = { gnupg.agent = {
enable = true; enable = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3"; pinentryFlavor = "gnome3";
}; };
less.enable = true; less.enable = true;
mosh.enable = true; mosh.enable = true;
ssh = {
startAgent = true;
extraConfig = ''
AddKeysToAgent yes
'';
};
# setcap wrapper for network permissions # setcap wrapper for network permissions
bandwhich.enable = true; bandwhich.enable = true;

View file

@ -22,7 +22,7 @@ in {
]; ];
shell = pkgs.fish; shell = pkgs.fish;
openssh.authorizedKeys.keys = [ openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMbf1C55Hgprm4Y7iNHae2UhZbLa6SNeurDTOyq2tr1G alarsyo@yubikey" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH3rrF3VSWI4n4cpguvlmLAaU3uftuX4AVV/39S/8GO9 alarsyo@thinkpad"
]; ];
}; };
} }