summaryrefslogtreecommitdiff
path: root/modules/pc/software/programs.nix
blob: 2868d9aacd255d9befacde0f6d99bf3a360d8b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  programs = {
    fish.enable = true;
    mtr.enable = true;
    dconf.enable = true;
    ccache.enable = true;
    fuse.userAllowOther = true;

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