✨ add pleroma
This commit is contained in:
parent
a23213a141
commit
ed1681b62a
@ -15,11 +15,13 @@ in
|
|||||||
../../modules/gitea
|
../../modules/gitea
|
||||||
../../modules/home-assistant
|
../../modules/home-assistant
|
||||||
../../modules/matrix
|
../../modules/matrix
|
||||||
|
../../modules/pleroma
|
||||||
../../modules/sops
|
../../modules/sops
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
|
boot.loader.systemd-boot.configurationLimit = 3;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
boot.cleanTmpDir = true;
|
boot.cleanTmpDir = true;
|
||||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||||
|
@ -3,7 +3,8 @@
|
|||||||
let
|
let
|
||||||
dotfiles = builtins.fetchTarball
|
dotfiles = builtins.fetchTarball
|
||||||
"https://github.com/walkah/dotfiles/archive/main.tar.gz";
|
"https://github.com/walkah/dotfiles/archive/main.tar.gz";
|
||||||
in {
|
in
|
||||||
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./networking.nix # generated at runtime by nixos-infect
|
./networking.nix # generated at runtime by nixos-infect
|
||||||
@ -15,6 +16,7 @@ in {
|
|||||||
../../modules/home-assistant/nginx.nix
|
../../modules/home-assistant/nginx.nix
|
||||||
../../modules/ipfs/gateway.nix
|
../../modules/ipfs/gateway.nix
|
||||||
../../modules/matrix/nginx.nix
|
../../modules/matrix/nginx.nix
|
||||||
|
../../modules/pleroma/nginx.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.overlays = [ (import ../../overlays) ];
|
nixpkgs.overlays = [ (import ../../overlays) ];
|
||||||
|
17
modules/pleroma/default.nix
Normal file
17
modules/pleroma/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
pleroma = {
|
||||||
|
enable = true;
|
||||||
|
configs = [ "import Config" ];
|
||||||
|
};
|
||||||
|
postgresql = {
|
||||||
|
ensureDatabases = [ "pleroma" ];
|
||||||
|
ensureUsers = [{
|
||||||
|
name = "pleroma";
|
||||||
|
ensurePermissions = { "DATABASE pleroma" = "ALL PRIVILEGES"; };
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
17
modules/pleroma/nginx.nix
Normal file
17
modules/pleroma/nginx.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.nginx = {
|
||||||
|
enable = true;
|
||||||
|
virtualHosts = {
|
||||||
|
"walkah.social" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://plato:4000";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user