dotfiles/nixos/home-manager/modules/cmdline-utils.nix

30 lines
449 B
Nix
Raw Normal View History

2021-01-18 09:00:12 +01:00
{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, ... }:
{ config, lib, pkgs, ... }:
{
2021-01-18 09:00:12 +01:00
services.gpg-agent = {
pinentryFlavor = "gtk2";
enable = true;
};
programs.gpg.enable = true;
home.packages = with nixpkgs; [
zip
2021-01-18 09:00:12 +01:00
unzip
pinentry
libqrencode
ssss
unrar
cargo
exa
bat
pciutils
git
socat
2021-01-18 09:00:12 +01:00
gnumake
nixpkgs-unstable.bfs
2021-01-18 09:00:12 +01:00
hugo
llvmPackages.bintools
pkgconfig
];
}