try to fix package

This commit is contained in:
Henry Hiles 2025-06-19 22:21:57 -04:00
commit 3ff78be71a
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@
};
};
flake.nixosModules.default = import ./module.nix;
flake.nixosModules.default = import ./module.nix inputs.self;
};
};
}

View file

@ -1,4 +1,4 @@
{
self: {
config,
lib,
pkgs,
@ -10,7 +10,7 @@ in {
meta.maintainers = with lib.maintainers; [quadradical];
options.services.matrixoidc = {
enable = lib.mkEnableOption "the matrixoidc server";
package = lib.mkPackageOption pkgs "matrixoidc" {};
package = lib.mkPackageOption self.packages.${pkgs.stdenv.hostPlatform.system} "matrixoidc" {};
group = lib.mkOption {
type = lib.types.string;