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

21 lines
333 B
Nix
Raw Normal View History

{ nixpkgs, nixpkgs-unstable, nixpkgs-master, custom, hostname, rlib, inputs }:
{ config, lib, ... }:
{
home.packages = with nixpkgs; [
zip
2021-01-18 09:00:12 +01:00
unzip
pinentry
libqrencode
unrar
pciutils
git
socat
2021-01-18 09:00:12 +01:00
gnumake
llvmPackages.bintools
2021-02-26 10:24:58 +01:00
pkgconfig
htop
2021-02-26 10:24:58 +01:00
] ++ (with custom; [
screenshot
]);
}