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

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