Your 'Systant. A system daemon on Linux that communicates via MQTT to get diagnostic info from, and send commands to, a Linux computer. Written in Elixir because fuck you, and written mostly by Claude because fuck everything.
Go to file
ryan 1629c8d5d2 refactor: switch to home-manager module
Systant is a userspace controller, so it makes sense to manage it
via home-manager rather than as a system service. This allows:
- Declarative per-user configuration
- Access to user's environment, PATH, and session
- Proper handling of audio, display, and other user resources

Usage in home-manager config:
  imports = [ inputs.systant.homeManagerModules.default ];
  services.systant.enable = true;
  services.systant.settings = { ... };

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 21:02:09 -08:00
.claude feat: add NixOS module and proper Nix packaging 2026-01-19 20:19:27 -08:00
.vscode Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
nix refactor: switch to home-manager module 2026-01-19 21:02:09 -08:00
src Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
.envrc Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
.gitignore Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
AGENTS.md Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
bun.lock Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
CLAUDE.md Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
flake.lock Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
flake.nix refactor: switch to home-manager module 2026-01-19 21:02:09 -08:00
index.ts Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
package.json Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
README.md Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
systant.toml.example Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00
tsconfig.json Initial systant implementation in Bun/TypeScript 2026-01-19 19:52:47 -08:00

systant

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.3.6. Bun is a fast all-in-one JavaScript runtime.