dotfiles/nixos/home-manager/cli.nix

58 lines
848 B
Nix
Raw Normal View History

2023-01-01 22:18:33 +00:00
{ config, pkgs, inputs, system, ... }: {
2019-11-23 09:03:58 +00:00
home.packages = with pkgs; [
2022-03-10 12:25:23 +00:00
(pass.withExtensions (ext: [
ext.pass-otp
ext.pass-import
ext.pass-genphrase
ext.pass-audit
ext.pass-update
]))
2022-06-04 12:51:36 +01:00
age
2022-12-08 12:22:01 +00:00
android-tools
2020-07-24 22:54:17 +01:00
aria
2023-02-03 22:43:32 +00:00
bc
2021-04-03 12:52:05 +01:00
bfg-repo-cleaner
2020-07-24 22:54:17 +01:00
binutils
bitwarden-cli
2021-11-18 17:10:02 +00:00
bottom
2020-07-24 22:54:17 +01:00
curl
dnsutils
docker-compose
du-dust
2023-07-14 20:27:17 +01:00
esptool
2021-09-21 09:14:57 +01:00
exercism
2020-07-24 22:54:17 +01:00
fd
file
2020-05-02 07:18:26 +01:00
fontconfig
2022-10-23 10:26:25 +01:00
fossil
2021-09-21 09:14:57 +01:00
genpass
2020-07-24 22:54:17 +01:00
git
2022-12-08 12:22:01 +00:00
gitRepo
2020-07-24 22:54:17 +01:00
htop
imagemagick
2023-07-13 19:36:32 +01:00
inetutils
2021-04-21 20:49:11 +01:00
jmtpfs
2022-04-22 20:58:25 +01:00
jpeginfo
2020-07-24 22:54:17 +01:00
jq
2023-01-01 22:18:33 +00:00
nix-du
2021-09-21 09:14:57 +01:00
nix-index
2021-05-29 23:33:19 +01:00
nix-top
2022-03-08 00:17:06 +00:00
nixfmt
2021-11-22 19:32:26 +00:00
nixpkgs-fmt
2022-07-20 20:55:49 +01:00
nmap
2022-07-17 16:13:09 +01:00
nvd
2021-06-06 08:04:44 +01:00
ripgrep-all
2020-07-24 22:54:17 +01:00
rustup
2022-06-04 12:51:36 +01:00
sops
2023-07-12 13:50:40 +01:00
speedtest-cli
2022-06-04 12:51:36 +01:00
ssh-to-age
2020-07-24 22:54:17 +01:00
tmux
2023-05-06 14:05:01 +01:00
units
2020-07-24 22:54:17 +01:00
unzip
wget
2023-05-06 14:05:01 +01:00
wl-clipboard
xdotool
2022-09-26 10:20:54 +01:00
inputs.nixpkgs-nixos-unstable.legacyPackages."x86_64-linux".youtube-dl
2019-11-23 09:03:58 +00:00
];
}