11 lines
189 B
Nix
11 lines
189 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.dconf.enable = true;
|
|
programs.zsh.enable = true;
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
# pinentryFlavor = "";
|
|
};
|
|
}
|