dotfiles/nix/home-manager/modules/cmdline-utils.nix
Richard Brežák c091ded85f GPG key and minor changes to packages
Signed-off-by: Richard Brežák <rbrezak@qualityunit.com>
2021-03-14 10:59:10 +01:00

21 lines
333 B
Nix

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
{ config, lib, ... }:
{
home.packages = with nixpkgs; [
zip
unzip
pinentry
libqrencode
unrar
pciutils
git
socat
gnumake
llvmPackages.bintools
pkgconfig
htop
] ++ (with custom; [
screenshot
]);
}