From 983fc1cd291de26473138f36334c9fee7128c096 Mon Sep 17 00:00:00 2001 From: ryan Date: Sun, 10 Aug 2025 20:39:45 -0700 Subject: [PATCH] Try fix nixosmodule --- nix/nixos-module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/nixos-module.nix b/nix/nixos-module.nix index 04bf27c..9a00294 100644 --- a/nix/nixos-module.nix +++ b/nix/nixos-module.nix @@ -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"; };