mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-12-10 03:49:44 +00:00
- Add environment and environmentFile options to runit module to support environment variables - Add opengist runit service that uses these options
9 lines
120 B
Nix
9 lines
120 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
runit.services.glances = {
|
|
script = ''
|
|
exec ${pkgs.glances}/bin/glances -w
|
|
'';
|
|
};
|
|
}
|