This probably shouldn't be included within a git repo, but it's small enough that we're not going to fret about it too much.
59 lines
1,014 B
Nix
59 lines
1,014 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Custom packages.
|
|
nixpkgs.overlays = [ (import ../pkgs/default.nix) ];
|
|
|
|
# Commonly used packages.
|
|
home.packages = with pkgs; [
|
|
binwalk
|
|
cloc
|
|
croc
|
|
exiftool
|
|
ffmpeg
|
|
go
|
|
google-cloud-sdk
|
|
gradle
|
|
htop
|
|
imagemagick
|
|
jadx
|
|
jdk
|
|
jq
|
|
meld
|
|
monaco-powerline
|
|
mtr
|
|
ncdu
|
|
neofetch
|
|
nixopsUnstable
|
|
p7zip
|
|
pngcrush
|
|
pry
|
|
protobuf
|
|
pwgen
|
|
radare2
|
|
rustup
|
|
tmux
|
|
unar
|
|
virt-manager
|
|
watch
|
|
wget
|
|
yt-dlp
|
|
];
|
|
|
|
# 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
|
|
programs.password-store = {
|
|
enable = true;
|
|
package = pkgs.pass.withExtensions (exts: [exts.pass-otp]);
|
|
settings = {
|
|
PASSWORD_STORE_DIR = "${config.home.homeDirectory}/.password-store";
|
|
};
|
|
};
|
|
}
|