dotfiles/nix-conf/home/includes/common.nix

54 lines
609 B
Nix
Raw Normal View History

2022-09-10 14:51:06 +00:00
{ config, pkgs, ... }:
{
imports = [
./zsh.nix
];
home.packages = with pkgs; [
2022-09-15 09:39:15 +00:00
aspell
aspellDicts.en
aspellDicts.en-computers
aspellDicts.en-science
2022-09-10 14:51:06 +00:00
bat
bottom
2022-09-13 06:48:02 +00:00
broot
2022-09-10 14:51:06 +00:00
curl
difftastic
duf
du-dust
elinks
exa
fd
fzf
git
gnupg
gopass
2022-09-15 09:39:15 +00:00
ispell
2022-09-10 14:51:06 +00:00
isync
jq
lscolors
2022-09-13 06:48:02 +00:00
lsd
2022-09-10 14:51:06 +00:00
lynx
2022-09-20 12:15:17 +00:00
nixfmt
2022-09-10 14:51:06 +00:00
nix-info
2022-09-13 06:48:02 +00:00
nix-prefetch-git
nix-prefetch-github
2022-09-15 09:39:15 +00:00
pinentry
2022-10-17 15:20:44 +00:00
pass
2022-09-10 14:51:06 +00:00
#procs
libqalculate
ripgrep
rlwrap
sd
tealdeer
ugrep
vim
w3m
2022-09-13 06:48:02 +00:00
zenith
2022-09-10 14:51:06 +00:00
];
programs.gpg.enable = true;
}