nixos-configs/modules/ags/config/app.ts
matt1432 f7ee925514
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update TODOs
2025-03-13 01:14:21 -04:00

17 lines
368 B
TypeScript

// TODO: see if I can bundle each config separately with nix
import { programArgs } from 'system';
import binto from './configurations/binto';
import wim from './configurations/wim';
import greeter from './configurations/greeter';
switch (programArgs[0]) {
case 'binto': binto(); break;
case 'wim': wim(); break;
case 'greeter': greeter(); break;
}