dotfiles/.config/nix/home/core.nix
Tobias Ostner 56177c31c5 Tweak git
2023-12-27 10:37:06 +01:00

18 lines
231 B
Nix

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