nix: fix typos

This commit is contained in:
notohh 2024-05-14 22:45:49 -04:00
parent 2212108ccf
commit 0a66ed2834
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -8,7 +8,7 @@
inherit (lib.modules) mkIf;
inherit (lib.options) mkOption mkEnableOption;
inherit (pkgs.stdenv.hostPlatform) system;
cfg = config.services.forcebot_rs;
cfg = config.services.botoh;
in {
options.services.botoh = {
enable = mkEnableOption ''
@ -22,7 +22,7 @@ in {
};
config = mkIf cfg.enable {
systemd.services.forcebot_rs = {
systemd.services.botoh = {
wantedBy = ["multi-user.target"];
serviceConfig.ExecStart = "${cfg.package}/bin/botoh";
};