summaryrefslogtreecommitdiff
path: root/modules/programs/default.nix
blob: 713907241188ba953a4161c026490f15ad29b330 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  imports = [
    ./gnupg.nix
    ./mosh.nix
    ./nh.nix
  ];

  programs = {
    fish.enable = true;
    mtr.enable = true;
    dconf.enable = true;
    ssh.startAgent = false;
    ccache.enable = true;
    nix-index-database.comma.enable = true;

    bash.interactiveShellInit = ''
      export HISTFILE="$XDG_STATE_HOME/bash/history"
    '';
  };
}