dotfiles/.config/nix/home/core.nix
2023-12-27 10:44:52 +01:00

20 lines
252 B
Nix

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