nix: update module

This commit is contained in:
notohh 2024-04-08 15:16:46 -04:00
parent 22066c0431
commit ce29a69e08
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -6,6 +6,7 @@ with lib; let
inherit (lib) types;
inherit (lib.modules) mkIf;
inherit (lib.options) mkOption mkEnableOption;
inherit (pkgs.stdenv.hostPlatform) system;
cfg = config.services.forcebot_rs;
in {
options.services.forcebot_rs = {
@ -15,7 +16,7 @@ in {
package = mkOption {
type = types.package;
default = self.packages.${pkgs.system}.default;
default = inputs.self.packages.${system}.default;
};
};