From 0a66ed28341c537110519d25e62cdcadad9be280 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 14 May 2024 22:45:49 -0400 Subject: [PATCH] nix: fix typos --- nix/module.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/module.nix b/nix/module.nix index 7966a1e..6c0c7ed 100644 --- a/nix/module.nix +++ b/nix/module.nix @@ -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"; };