summaryrefslogtreecommitdiff
path: root/shenvs/config.nix
blob: eb5033fb585f3b35962f232a661c8a139af5d5cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ shenvs, config, lib }: with lib; {
  gcKeep = with shenvs; let
    common = [
      dsp
      tex
    ];

    workstation = [
      android-dev
      el3310
      randall
      tabas
    ];
  in common ++ optionals config.local.workstation workstation;
}