diff options
Diffstat (limited to 'nix-conf/home/includes/linux-server.nix')
-rw-r--r-- | nix-conf/home/includes/linux-server.nix | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/nix-conf/home/includes/linux-server.nix b/nix-conf/home/includes/linux-server.nix index 12164b4..62233f0 100644 --- a/nix-conf/home/includes/linux-server.nix +++ b/nix-conf/home/includes/linux-server.nix @@ -1,22 +1,21 @@ { config, pkgs, ... }: { - imports = [ - ./common.nix - ]; + imports = [ ./common.nix ]; home.packages = with pkgs; [ emacs-nox irssi libtree msmtp - neomutt pinentry restic + sword + yt-dlp ]; services.gpg-agent = { enable = true; - pinentryPackage = pkgs.pinentry-curses; + pinentry.package = pkgs.pinentry-curses; defaultCacheTtl = 34560000; maxCacheTtl = 34560000; }; @@ -51,4 +50,3 @@ programs.vim.packageConfigurable = pkgs.vim; } - |