summaryrefslogtreecommitdiff
path: root/users/seth/programs/default.nix
blob: 8cb4a6c83e3b5b95788bd56408375cf01c999d69 (plain)
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
{
  config,
  pkgs,
  ...
}: let
  develPackages =
    if config.seth.devel.enable
    then
      with pkgs; [
        alejandra
        clang
        deadnix
        eclint
        statix
      ]
    else [];
in {
  imports = [
    ./git.nix
    # ./mangohud
    ./neovim
    ./starship.nix
    ./vim.nix
    ./xdg.nix
  ];

  home.packages = with pkgs;
    [
      bat
      exa
      fd
      gh
      lld
      ripgrep
      python311
    ]
    ++ develPackages;
}