Compare commits

..

No commits in common. "f35055a5da0d1df4eee40edfc6f3db2d33b2070a" and "3b7bffa856aec73e4259a73e2380ad41b98c719d" have entirely different histories.

2 changed files with 8 additions and 0 deletions

View file

@ -17,6 +17,7 @@
./borg.nix ./borg.nix
./gdm.nix ./gdm.nix
./gpg.nix
./pipewire.nix ./pipewire.nix
./printer.nix ./printer.nix
./sway.nix ./sway.nix

7
hosts/alice/gpg.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryPackage = pkgs.pinentry-gnome3;
};
}