mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
12 lines
241 B
Nix
12 lines
241 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
# Some programs need SUID wrappers, can be configured further or are
|
||
|
# started in user sessions.
|
||
|
# programs.mtr.enable = true;
|
||
|
programs.gnupg.agent = {
|
||
|
enable = true;
|
||
|
enableSSHSupport = true;
|
||
|
};
|
||
|
}
|