try to fix package
This commit is contained in:
parent
f04d073e6b
commit
3ff78be71a
2 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.nixosModules.default = import ./module.nix;
|
flake.nixosModules.default = import ./module.nix inputs.self;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{
|
self: {
|
||||||
config,
|
config,
|
||||||
lib,
|
lib,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
@ -10,7 +10,7 @@ in {
|
||||||
meta.maintainers = with lib.maintainers; [quadradical];
|
meta.maintainers = with lib.maintainers; [quadradical];
|
||||||
options.services.matrixoidc = {
|
options.services.matrixoidc = {
|
||||||
enable = lib.mkEnableOption "the matrixoidc server";
|
enable = lib.mkEnableOption "the matrixoidc server";
|
||||||
package = lib.mkPackageOption pkgs "matrixoidc" {};
|
package = lib.mkPackageOption self.packages.${pkgs.stdenv.hostPlatform.system} "matrixoidc" {};
|
||||||
|
|
||||||
group = lib.mkOption {
|
group = lib.mkOption {
|
||||||
type = lib.types.string;
|
type = lib.types.string;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue