13 lines
225 B
Nix
13 lines
225 B
Nix
{ inputs, config, pkgs, ... }:
|
|
|
|
let
|
|
in {
|
|
# Some programs need SUID wrappers, can be configured further or are
|
|
# started in user sessions.
|
|
programs.gnupg.agent = {
|
|
enable = true;
|
|
enableSSHSupport = true;
|
|
};
|
|
|
|
}
|