nix-config/modules/dev/default.nix

13 lines
265 B
Nix
Raw Normal View History

{
imports = [
./docs.nix
];
environment.enableDebugInfo = true;
2023-09-20 18:53:35 +02:00
services.nixseparatedebuginfod.enable = true;
2023-08-30 14:25:52 +02:00
environment.shellInit = ''
gpg-connect-agent /bye
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
umask 077
'';
}