nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (186B)


      1 {pkgs, ...}: {
      2 	services.gpg-agent = {
      3 		enable = true;
      4 		enableSshSupport = true;
      5 		pinentry.package = pkgs.pinentry-qt;
      6 		sshKeys = ["F2F9CB00ABA433C59C7AF87A67A8D5F74D235760"];
      7 	};
      8 }