Try fix nixosmodule

This commit is contained in:
ryan 2025-08-10 20:39:45 -07:00
parent 2d948073b2
commit 983fc1cd29

View File

@ -2,7 +2,6 @@
config,
lib,
pkgs,
inputs,
...
}:
@ -17,7 +16,7 @@ in
package = mkOption {
type = types.package;
default = pkgs.callPackage ./package.nix { inherit inputs; };
default = pkgs.callPackage ./package.nix { src = ../server; };
description = "The systant package to use";
};