aboutsummaryrefslogtreecommitdiff
path: root/users/profiles/mac.nix
blob: 8c281acd5a92ee7dee1166334a653616d2fbc3d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ self, pkgs, ... }:
{
  imports = [
    "${self}/users/programs/1password.nix"
    "${self}/users/programs/alacritty"
    "${self}/users/programs/bat.nix"
    "${self}/users/programs/direnv.nix"
    "${self}/users/programs/emacs"
    "${self}/users/programs/eza.nix"
    "${self}/users/programs/fd.nix"
    "${self}/users/programs/fish.nix"
    "${self}/users/programs/gh.nix"
    "${self}/users/programs/git.nix"
    "${self}/users/programs/go.nix"
    "${self}/users/programs/ssh.nix"
    "${self}/users/programs/starship.nix"
    ./llm.nix
    ./secrets.nix
  ];

  home.packages = with pkgs; [
    age
    aider-chat
    bandwhich
    basedpyright
    bottom
    coreutils
    dive # explore layers in docker images
    docker
    docker-credential-helpers
    dust
    jless
    jq
    llmPython.llm # llm and claude support
    nil # nix lsp
    nix-direnv # integration with direnv
    nixfmt-rfc-style # new formatter
    procs
    python3
    restic
    ripgrep
    ruff
    shellcheck
    tree
    uv
    wget
    wireshark
    yq
  ];

  home.sessionVariables = {
    LESS = "-FRSXM";
    LESSCHARSET = "utf-8";
    PAGER = "less";
    SHELL = "${pkgs.fish}/bin/fish";
  };

  xdg.enable = true;
}