🔧 plato: gnupg config

This commit is contained in:
2021-12-18 12:40:52 -05:00
parent a68eb5fddd
commit f73e2a59cc
2 changed files with 9 additions and 6 deletions

View File

@ -3,8 +3,10 @@
let
dotfiles = builtins.fetchTarball
"https://github.com/walkah/dotfiles/archive/main.tar.gz";
in {
imports = [ # Include the results of the hardware scan.
in
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
<home-manager/nixos>
@ -51,7 +53,7 @@ in {
home-manager.users.walkah = import "${dotfiles}/home.nix";
system.autoUpgrade.enable = false;
environment.systemPackages = with pkgs; [ docker-compose weechat ];
environment.systemPackages = with pkgs; [ docker-compose pinentry weechat ];
fileSystems."/mnt/downloads" = {
device = "192.168.6.100:/volume1/Downloads";
@ -84,6 +86,7 @@ in {
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
pinentryFlavor = "curses";
};
# Enable the OpenSSH daemon.