From 77cbc752a878bae3ea6884d3239d915044f4fb23 Mon Sep 17 00:00:00 2001
From: Kiara Grouwstra <kiara@procolix.eu>
Date: Tue, 18 Mar 2025 11:38:24 +0100
Subject: [PATCH] remove inputs parameter from fedipanel.nix

makes `nixops4 apply` go thru, tho the service still fails on `No module
named 'django_pydantic_field'`
---
 infra/machines/fedi201/fedipanel.nix | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/infra/machines/fedi201/fedipanel.nix b/infra/machines/fedi201/fedipanel.nix
index 64e42ca0..b64e926b 100644
--- a/infra/machines/fedi201/fedipanel.nix
+++ b/infra/machines/fedi201/fedipanel.nix
@@ -1,5 +1,5 @@
 {
-  inputs,
+  # inputs,
   config,
   pkgs,
   ...
@@ -19,7 +19,8 @@ in
   };
 
   environment.systemPackages = [
-    inputs.self.outPath
+    # inputs.self.outPath
+    # ../../..
     panel
   ];
 
@@ -45,7 +46,8 @@ in
     };
   };
   systemd.services.${name}.environment = {
-    REPO_DIR = inputs.self.outPath;
+    # REPO_DIR = inputs.self.outPath;
+    REPO_DIR = ../../..;
     NIX_DIR = pkgs.nix;
   };
 }