nix-config/home/common/cli/default.nix
2024-08-21 15:15:04 +02:00

15 lines
405 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
];
home.packages = with pkgs; [
comma # nix-shell a package by prefixing it with `,`
ripgrep # well, it's grep
];
}