nix-config/home/features/cli/default.nix
2024-09-08 17:07:38 +02:00

18 lines
554 B
Nix

# Configures programs that primarily run via the command line
{ pkgs, ... }:
{
imports = [
./fish.nix # fish shell configuration
./neovim.nix # neovim configuration, my "escape" editor
./lazygit.nix # my preferred git porcellain
./direnv.nix # smart cding
./mise.nix # version management for tools
];
# stuff that doesn't fit into any other files
home.packages = with pkgs; [
comma # nix-shell a package by prefixing it with `,`
ripgrep # well, it's grep
fastfetch # gotta show system information somehow!
];
}