forked from Fediversity/Fediversity
Closes #76. Note I had not yet manage to successfully test this. Manually trying the parameterized NixOps4 I tried using the following command, tho I had yet to get this to work as well: ```sh DEPLOYMENT='{"domain": "fediversity.net", "mastodon": {"enable": false}, "pixelfed": {"enable": true}, "peertube": {"enable": false}}' nix develop --extra-experimental-features "configurable-impure-env" --command nixops4 apply test ``` (or rather, I used a hardcoded Nix here so as to make it not use Lix.) So far this had failed for me with: ``` the following units failed: acme-mastodon.web.garage.fediversity.net.service ... nixops4 error: Failed to create resource garage-configuration ```
48 lines
942 B
Nix
48 lines
942 B
Nix
{
|
|
self,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
name = "panel";
|
|
panel = (import ../../../panel/default.nix { }).package;
|
|
in
|
|
{
|
|
imports = [
|
|
../../../panel/nix/configuration.nix
|
|
];
|
|
|
|
nix.settings = {
|
|
extra-experimental-features = "configurable-impure-env";
|
|
};
|
|
|
|
environment.systemPackages = [
|
|
self
|
|
panel
|
|
];
|
|
|
|
security.acme = {
|
|
acceptTerms = true;
|
|
defaults.email = "beheer@procolix.com";
|
|
};
|
|
|
|
services.${name} = {
|
|
enable = true;
|
|
package = panel;
|
|
production = true;
|
|
domain = "demo.fediversity.eu";
|
|
host = "0.0.0.0";
|
|
secrets = {
|
|
SECRET_KEY = config.age.secrets.panel-secret-key.path;
|
|
};
|
|
port = 8000;
|
|
settings = {
|
|
DATABASE_URL = "sqlite:///var/lib/${name}/db.sqlite3";
|
|
CREDENTIALS_DIRECTORY = "/var/lib/${name}/.credentials";
|
|
STATIC_ROOT = "/var/lib/${name}/static";
|
|
};
|
|
};
|
|
systemd.services.${name}.env = {
|
|
REPO_DIR = builtins.trace self self;
|
|
};
|
|
}
|