aboutsummaryrefslogblamecommitdiff
path: root/home/programs/cli/core.nix
blob: 7d04684aa68315a7ce1a6f591245118427323452 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

                      












                                          









                                             
{ config, pkgs, ... }:
{
  home.packages = with pkgs; [
    delve
    dive # explore layers in docker images
    docker
    docker-credential-helpers
    nil # nix lsp
    nix-direnv # integration with direnv
    nixfmt-rfc-style # new formatter
    shellcheck
    tree
    wget
    wireshark
  ];

  programs.fish.shellAliases = {
    grep = "${pkgs.ripgrep}/bin/rg";
    ps = "${pkgs.procs}/bin/procs";
  };

  home.sessionPath = [
    "${config.home.homeDirectory}/.local/bin"
  ];
}