14 lines
221 B
Nix
14 lines
221 B
Nix
|
{
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
services.metabase = {
|
||
|
enable = true;
|
||
|
listen.port = 3013;
|
||
|
};
|
||
|
systemd.services.metabase.serviceConfig = {
|
||
|
EnvironmentFile = "${config.age.secrets.metabase-env.path}";
|
||
|
};
|
||
|
}
|