mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
Enables ssh-agent on linux
This commit is contained in:
parent
4d009acde3
commit
e9cd6d97af
2 changed files with 4 additions and 0 deletions
|
@ -18,6 +18,7 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
gcc-arm-embedded
|
||||
killall
|
||||
];
|
||||
|
||||
home.homeDirectory = "/home/willem";
|
||||
|
|
|
@ -5,6 +5,8 @@
|
|||
...
|
||||
}: {
|
||||
services = {
|
||||
ssh-agent.enable = true;
|
||||
|
||||
gpg-agent = {
|
||||
enable = true;
|
||||
enableSshSupport = true;
|
||||
|
@ -13,6 +15,7 @@
|
|||
maxCacheTtl = 600;
|
||||
pinentryFlavor = "tty";
|
||||
};
|
||||
|
||||
emacs = {
|
||||
enable = true;
|
||||
package =
|
||||
|
|
Loading…
Add table
Reference in a new issue