dotfiles/.config/nix/home/core.nix
2023-12-15 08:39:12 +01:00

19 lines
261 B
Nix

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