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;
   };
 }