remove inputs parameter from fedipanel.nix

makes `nixops4 apply` go thru, tho the service still fails on `No module
named 'django_pydantic_field'`
This commit is contained in:
Kiara Grouwstra 2025-03-18 11:38:24 +01:00
parent 3e2c83435d
commit 77cbc752a8
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -1,5 +1,5 @@
{ {
inputs, # inputs,
config, config,
pkgs, pkgs,
... ...
@ -19,7 +19,8 @@ in
}; };
environment.systemPackages = [ environment.systemPackages = [
inputs.self.outPath # inputs.self.outPath
# ../../..
panel panel
]; ];
@ -45,7 +46,8 @@ in
}; };
}; };
systemd.services.${name}.environment = { systemd.services.${name}.environment = {
REPO_DIR = inputs.self.outPath; # REPO_DIR = inputs.self.outPath;
REPO_DIR = ../../..;
NIX_DIR = pkgs.nix; NIX_DIR = pkgs.nix;
}; };
} }