aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/development.nix
blob: f5cdcca3af5bdc807f4bbf6ba97f91f246ba4e1c (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
{ ... }:
{
  imports = [
    ../programs/aider.nix
    ../programs/gh.nix
    ../programs/git.nix
    ../programs/go.nix
  ];

  programs.delta = {
    enable = true;
    options.features = "decorations side-by-side line-numbers";
  };

  programs.direnv = {
    enable = true;
    nix-direnv.enable = true;
    config.global = {
      disable_stdin = true;
      strict_env = true;
      hide_env_diff = true;
      warn_timeout = 0;
    };
  };
}