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.

chore(shared/gnupg): add lib.mkDefault for programs.gnupg.agent.pinentryPackage

Follow-up to earlier commit on using pinentry-curses
by default per c38f768365169453907607c71f5e733262e6f6df, especially for desktop environment-specific overrides (e.g. KDE Plasma)

Signed-off-by: ajhalili2006 <ajhalili2006@gmail.com>

+2 -2
+2 -2
shared/gnupg.nix
··· 1 - { pkgs, ... }: 1 + { pkgs, lib, ... }: 2 2 3 3 { 4 4 # enable gpg-agent with SSH support ··· 6 6 enable = true; 7 7 enableSSHSupport = true; 8 8 enableBrowserSocket = true; 9 - pinentryPackage = pkgs.pinentry-curses; 9 + pinentryPackage = lib.mkDefault pkgs.pinentry-curses; 10 10 }; 11 11 12 12 environment.systemPackages = with pkgs; [