Move MPD to home manager
This commit is contained in:
parent
2beaf963c2
commit
bcadad2420
16 changed files with 43 additions and 66 deletions
|
@ -1,6 +1,6 @@
|
|||
{ config, ... }:
|
||||
{ config, lib, ... }:
|
||||
{
|
||||
services.nginx.virtualHosts."lemmy.${config.domains.jim1}" = {
|
||||
services.nginx.virtualHosts."lemmy.${config.domains.jim1}" = lib.mkIf config.services.lemmy.enable {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
};
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./synapse
|
||||
./coturn
|
||||
./element
|
||||
./slidingsync
|
||||
./synapse
|
||||
];
|
||||
}
|
||||
|
|
|
@ -1,11 +1,5 @@
|
|||
{ pkgs, config, ... }:
|
||||
{
|
||||
imports = [
|
||||
./coturn
|
||||
./slidingsync
|
||||
./nginx
|
||||
];
|
||||
|
||||
services.matrix-synapse = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue