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

65 lines
907 B
Nix
Raw Normal View History

2022-09-10 14:51:06 +00:00
{ config, pkgs, ... }:
2022-10-28 19:59:49 +00:00
let
hcr = pkgs.callPackage ./scripts/hm-changes-report.nix { inherit config pkgs; };
scr = pkgs.callPackage ./scripts/system-changes-report.nix { inherit config pkgs; };
in
2022-09-10 14:51:06 +00:00
{
imports = [
./zsh.nix
];
home.packages = with pkgs; [
2022-10-28 19:59:49 +00:00
hcr
scr
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-10-26 10:17:57 +00:00
nvd
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
libqalculate
ripgrep
rlwrap
sd
tealdeer
ugrep
vim
w3m
];
programs.gpg.enable = true;
2022-11-05 16:17:36 +00:00
programs.nix-index = {
enable = true;
enableZshIntegration = false;
enableBashIntegration = false;
};
2022-09-10 14:51:06 +00:00
}