mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-02-24 00:58:55 -05:00
21 lines
279 B
Nix
21 lines
279 B
Nix
|
{ pkgs, ... }: {
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [
|
||
|
gnupg
|
||
|
openssh
|
||
|
pinentry-curses
|
||
|
pinentry
|
||
|
];
|
||
|
};
|
||
|
programs = {
|
||
|
ssh = {
|
||
|
startAgent = true;
|
||
|
};
|
||
|
gnupg = {
|
||
|
agent = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|