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

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