nixos/home/common/core/default.nix
Sam 8c20041ab9 Add tealdeer package and configure zsh manpager
- Add tealdeer to the list of packages in default.nix
- Configure zsh to use nvim as the manpager in zsh.nix
2024-12-12 15:45:41 +00:00

36 lines
632 B
Nix

{ pkgs, inputs, outputs, lib, ... }:
{
imports = [
inputs.nix-colors.homeManagerModules.default
./zsh.nix
./nixvim
];
nixpkgs.overlays = [
inputs.nur.overlay
outputs.overlays.additions
outputs.overlays.unstable-packages
];
# Global home packages without config go here (for all hosts and users)
home.packages = builtins.attrValues {
inherit (pkgs)
ripgrep
fzf
eza
bat
killall
pciutils
tree
jq
coreutils
btop
htop
postgresql_16
libqalculate
tmux
tealdeer
;
};
home.stateVersion = "24.05";
}