dotfiles/nixos/cli.nix

23 lines
644 B
Nix
Raw Normal View History

2019-11-23 09:03:58 +00:00
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
2020-06-24 18:51:03 +01:00
genpass bitwarden-cli
2020-05-10 08:45:21 +01:00
gdb lldb
2020-04-18 12:13:02 +01:00
wget git gnupg curl tmux htop atop pciutils powertop ripgrep-all fd dnsutils du-dust
2019-11-23 09:03:58 +00:00
( pass.withExtensions (ext: [ ext.pass-otp ext.pass-import ext.pass-genphrase ext.pass-audit ext.pass-update ]))
2020-05-02 07:18:26 +01:00
hsetroot lm_sensors
2019-11-23 09:03:58 +00:00
wirelesstools ranger apvlv
2020-05-02 07:18:26 +01:00
fontconfig
2019-11-23 09:03:58 +00:00
binutils veracrypt gitAndTools.diff-so-fancy
2020-06-24 18:51:03 +01:00
restic jq
2019-11-23 09:03:58 +00:00
hugo mercurial terraform
unzip aria
2020-02-12 14:07:33 +00:00
calcurse file python37Packages.binwalk-full
2019-12-16 10:19:52 +00:00
nixops imagemagick
2020-03-23 12:46:24 +00:00
docker-compose rustup
2020-04-21 21:18:30 +01:00
knockknock
2020-05-09 16:04:51 +01:00
python38Packages.pygments
2020-07-04 10:21:15 +01:00
canto-curses
2019-11-23 09:03:58 +00:00
];
}