nix/home/default.nix

86 lines
1.2 KiB
Nix
Raw Normal View History

2021-10-09 01:46:55 +02:00
{pkgs, ...}:
{
home.packages = with pkgs; [
2021-10-23 17:50:36 +02:00
(python3.withPackages(ps: with ps; [
ansible
dnspython
2021-10-28 21:05:21 +02:00
youtube-dl
2021-11-13 22:06:43 +01:00
boto3 # aws-s3 support for ansible
2022-04-08 20:01:06 +02:00
kubernetes # is in ansible kubernetes.core module
2021-11-19 20:41:07 +01:00
# dict_utils for an ansible filter_plugin
setuptools
deepmerge
pip
passlib # bcrypt
2021-10-23 17:50:36 +02:00
]))
2021-10-09 01:46:55 +02:00
killall
tree
2021-10-09 01:46:55 +02:00
htop
mosh
git
2021-11-13 22:06:43 +01:00
pre-commit
2021-10-09 01:46:55 +02:00
git-lfs
2022-04-08 20:01:35 +02:00
git-crypt
git-annex
2022-02-23 22:22:10 +01:00
ghorg
2021-10-09 01:46:55 +02:00
tig
tea
glab
figlet
grml-zsh-config
tmux
2021-10-11 11:37:10 +02:00
w3m
2021-10-09 01:46:55 +02:00
#neovim
2022-04-08 20:11:10 +02:00
wget
2021-10-09 01:46:55 +02:00
xh
minio-client
2021-10-09 01:46:55 +02:00
liboping # fix it
mtr
colordiff
direnv
pure-prompt
#vimPlugins.nvim-lspconfig
#vimPlugins.nerdtree
go gcc libcap
go-langserver
2021-10-15 01:44:37 +02:00
yarn
2021-10-14 16:30:31 +02:00
pwgen
2021-10-09 18:07:16 +02:00
pass-wayland
2021-10-23 20:36:04 +02:00
gotify-cli
2021-10-09 01:46:55 +02:00
glow
2021-11-13 22:06:43 +01:00
imagemagick
2021-10-23 17:50:04 +02:00
ffmpeg
# devOps
terraform
tflint
2022-04-08 20:11:24 +02:00
kubectl
2022-04-08 20:01:06 +02:00
k9s
nixopsUnstable
2021-10-09 01:46:55 +02:00
];
programs.zsh = {
enable = true;
enableAutosuggestions = true;
# broken: enableSyntaxHighlighting = true;
# grml and pure enabled ....
};
2021-11-13 22:06:43 +01:00
programs.direnv.enable = true;
2021-10-09 01:46:55 +02:00
programs.neovim = {
enable = true;
extraConfig = ''
syntax on
set number relativenumber
'';
plugins = with pkgs.vimPlugins; [
nvim-lspconfig
airline
Syntastic
{
plugin = nerdtree;
config = "map <C-n> :NERDTreeToggle<CR>";
}
];
};
}