Compare commits

...

2 commits

Author SHA1 Message Date
2e4b482d43
Add various useful utilities 2023-05-13 15:49:16 -05:00
974c703031
Add gpg 2023-05-13 15:49:10 -05:00

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: { config, lib, pkgs, ... }:
# In order to allow reuse of the iTerm2 shell integrations repo # In order to allow reuse of the iTerm2 shell integrations repo
# for both its utility symlinks and zsh initialization plugin, # for both its utility symlinks and zsh initialization plugin,
@ -25,11 +25,15 @@ in {
"/home/spotlight"; "/home/spotlight";
home.packages = with pkgs; [ home.packages = with pkgs; [
ffmpeg
go go
google-cloud-sdk
htop htop
mtr mtr
ncdu ncdu
tmux tmux
virt-manager
yt-dlp
]; ];
# Git # Git
@ -49,6 +53,15 @@ in {
init.defaultBranch = "main"; init.defaultBranch = "main";
}; };
}; };
# GPG
programs.gpg.enable = true;
home.file.".gnupg/gpg-agent.conf" = lib.mkIf pkgs.stdenv.isDarwin {
text = ''
pinentry-program "${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac"
'';
};
# password-store # password-store
programs.password-store = { programs.password-store = {
enable = true; enable = true;