forked from Fediversity/Fediversity
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:
parent
3e2c83435d
commit
77cbc752a8
1 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue