18 lines
583 B
Nix
18 lines
583 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
wget git gnupg curl tmux htop atop pciutils powertop ripgrep-all fd dnsutils du-dust
|
|
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
|
|
cabal-install stack hsetroot lm_sensors
|
|
wirelesstools ranger apvlv
|
|
fontconfig gcc gdb
|
|
binutils veracrypt gitAndTools.diff-so-fancy
|
|
restic ghc jq awscli
|
|
hugo mercurial terraform
|
|
unzip aria
|
|
calcurse file python37Packages.binwalk-full
|
|
nixops imagemagick
|
|
docker-compose rustup
|
|
];
|
|
}
|