blob: 4d33f743c2655f85028031a34048c5caf80f5ae1 (
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;
}
|