NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e8a911e91a443b74c7eed09f8eee7ce006a6cdfd 17 lines 273 B view raw
1{ pkgs, ... }: 2 3{ 4 # enable gpg-agent with SSH support 5 programs.gnupg.agent = { 6 enable = true; 7 enableSSHSupport = true; 8 enableBrowserSocket = true; 9 }; 10 11 environment.systemPackages = with pkgs; [ 12 gnupg 13 gpgme 14 gpgme.dev 15 pinentry-tty 16 ]; 17}