mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-25 10:18:37 +02:00
fix: gnupg pinentry, nvtop
This commit is contained in:
@@ -13,7 +13,7 @@
|
|||||||
pulsemixer
|
pulsemixer
|
||||||
imv # simple image viewer
|
imv # simple image viewer
|
||||||
|
|
||||||
nvtop
|
nvtopPackages.full
|
||||||
|
|
||||||
# video/audio tools
|
# video/audio tools
|
||||||
cava # for visualizing audio
|
cava # for visualizing audio
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
{config, ...}: {
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
nix.extraOptions = ''
|
nix.extraOptions = ''
|
||||||
!include ${config.age.secrets.nix-access-tokens.path}
|
!include ${config.age.secrets.nix-access-tokens.path}
|
||||||
'';
|
'';
|
||||||
@@ -12,7 +16,7 @@
|
|||||||
# gpg agent with pinentry
|
# gpg agent with pinentry
|
||||||
programs.gnupg.agent = {
|
programs.gnupg.agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pinentryPackage = "curses";
|
pinentryPackage = pkgs.pinentry-qt;
|
||||||
enableSSHSupport = false;
|
enableSSHSupport = false;
|
||||||
settings.default-cache-ttl = 4 * 60 * 60; # 4 hours
|
settings.default-cache-ttl = 4 * 60 * 60; # 4 hours
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user