dotfiles/.config/nix/home/core.nix
2024-02-18 10:43:37 +01:00

23 lines
293 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
bottom
curl
jq
kind
kubectl
less
nix-output-monitor
raycast
ripgrep
tree
];
home.sessionVariables = {
PAGER = "less";
CLICOLOR = 1;
EDITOR = "emacs";
};
programs.bat.enable = true;
}