nix-config/home/modules/runit/services/glances.nix
lightly-toasted 3b3476c110 feat(y2q): add opengist
- Add environment and environmentFile options to runit module to support environment variables
- Add opengist runit service that uses these options
2025-12-07 15:19:44 +09:00

9 lines
120 B
Nix

{ pkgs, ... }:
{
runit.services.glances = {
script = ''
exec ${pkgs.glances}/bin/glances -w
'';
};
}