forked from Fediversity/Fediversity
Get panel config as a block - use eg. mastodon.enable
This commit is contained in:
parent
07b3cd90d7
commit
f34f2e45ab
2 changed files with 15 additions and 18 deletions
|
@ -30,13 +30,10 @@
|
||||||
## partially applied only until here.
|
## partially applied only until here.
|
||||||
|
|
||||||
## Information on the specific deployment that we request. This is the
|
## Information on the specific deployment that we request. This is the
|
||||||
## information that will come from the FediPanel.
|
## information coming from the FediPanel.
|
||||||
{
|
##
|
||||||
domain,
|
## FIXME: lock step the interface with the definitions in the FediPanel
|
||||||
enableMastodon,
|
panelConfig:
|
||||||
enablePeertube,
|
|
||||||
enablePixelfed,
|
|
||||||
}:
|
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib) mkMerge mkIf;
|
inherit (lib) mkMerge mkIf;
|
||||||
|
@ -106,12 +103,12 @@ in
|
||||||
|
|
||||||
mkMerge [
|
mkMerge [
|
||||||
|
|
||||||
(mkIf (enableMastodon || enablePeertube || enablePixelfed) {
|
(mkIf (panelConfig.mastodon.enable || panelConfig.peertube.enable || panelConfig.pixelfed.enable) {
|
||||||
garage-configuration = makeConfigurationResource garageConfigurationResource (
|
garage-configuration = makeConfigurationResource garageConfigurationResource (
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
fediversity = {
|
fediversity = {
|
||||||
inherit domain;
|
inherit (panelConfig) domain;
|
||||||
garage.enable = true;
|
garage.enable = true;
|
||||||
pixelfed = pixelfedS3KeyConfig { inherit pkgs; };
|
pixelfed = pixelfedS3KeyConfig { inherit pkgs; };
|
||||||
mastodon = mastodonS3KeyConfig { inherit pkgs; };
|
mastodon = mastodonS3KeyConfig { inherit pkgs; };
|
||||||
|
@ -121,12 +118,12 @@ in
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf enableMastodon {
|
(mkIf panelConfig.mastodon.enable {
|
||||||
mastodon-configuration = makeConfigurationResource mastodonConfigurationResource (
|
mastodon-configuration = makeConfigurationResource mastodonConfigurationResource (
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
fediversity = {
|
fediversity = {
|
||||||
inherit domain;
|
inherit (panelConfig) domain;
|
||||||
mastodon = mastodonS3KeyConfig { inherit pkgs; } // {
|
mastodon = mastodonS3KeyConfig { inherit pkgs; } // {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
@ -137,12 +134,12 @@ in
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf enablePeertube {
|
(mkIf panelConfig.peertube.enable {
|
||||||
peertube-configuration = makeConfigurationResource peertubeConfigurationResource (
|
peertube-configuration = makeConfigurationResource peertubeConfigurationResource (
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
fediversity = {
|
fediversity = {
|
||||||
inherit domain;
|
inherit (panelConfig) domain;
|
||||||
peertube = peertubeS3KeyConfig { inherit pkgs; } // {
|
peertube = peertubeS3KeyConfig { inherit pkgs; } // {
|
||||||
enable = true;
|
enable = true;
|
||||||
## NOTE: Only ever used for testing anyway.
|
## NOTE: Only ever used for testing anyway.
|
||||||
|
@ -155,12 +152,12 @@ in
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
|
|
||||||
(mkIf enablePixelfed {
|
(mkIf panelConfig.pixelfed.enable {
|
||||||
pixelfed-configuration = makeConfigurationResource pixelfedConfigurationResource (
|
pixelfed-configuration = makeConfigurationResource pixelfedConfigurationResource (
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
fediversity = {
|
fediversity = {
|
||||||
inherit domain;
|
inherit (panelConfig) domain;
|
||||||
pixelfed = pixelfedS3KeyConfig { inherit pkgs; } // {
|
pixelfed = pixelfedS3KeyConfig { inherit pkgs; } // {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"domain": "abundos.eu",
|
"domain": "abundos.eu",
|
||||||
"enableMastodon": false,
|
"mastodon": { "enable": false },
|
||||||
"enablePeertube": false,
|
"peertube": { "enable": false },
|
||||||
"enablePixelfed": false
|
"pixelfed": { "enable": false }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue