mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 03:37:18 +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; [
|
home.packages = with pkgs; [
|
||||||
gcc-arm-embedded
|
gcc-arm-embedded
|
||||||
|
killall
|
||||||
];
|
];
|
||||||
|
|
||||||
home.homeDirectory = "/home/willem";
|
home.homeDirectory = "/home/willem";
|
||||||
|
|
|
@ -5,6 +5,8 @@
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
services = {
|
services = {
|
||||||
|
ssh-agent.enable = true;
|
||||||
|
|
||||||
gpg-agent = {
|
gpg-agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableSshSupport = true;
|
enableSshSupport = true;
|
||||||
|
@ -13,6 +15,7 @@
|
||||||
maxCacheTtl = 600;
|
maxCacheTtl = 600;
|
||||||
pinentryFlavor = "tty";
|
pinentryFlavor = "tty";
|
||||||
};
|
};
|
||||||
|
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package =
|
package =
|
||||||
|
|
Loading…
Add table
Reference in a new issue