diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2022-12-27 16:41:16 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2022-12-27 16:41:16 +0100 |
commit | 6e51845d44cd0cee89d9ad17faee4754435d582e (patch) | |
tree | 0140eb251556159213c811fe4d472bd178d00eef /docs/installation/nixos_en.md | |
parent | c899af1d6acad1895240a0247e9b91eca5db08df (diff) | |
parent | b367f22256edaa3536a7b2d6dea41fd472870181 (diff) | |
download | pleroma-6e51845d44cd0cee89d9ad17faee4754435d582e.tar.gz pleroma-6e51845d44cd0cee89d9ad17faee4754435d582e.zip |
Merge remote-tracking branch 'pleroma/develop' into secure-mode
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
Diffstat (limited to 'docs/installation/nixos_en.md')
-rw-r--r-- | docs/installation/nixos_en.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docs/installation/nixos_en.md b/docs/installation/nixos_en.md new file mode 100644 index 000000000..f3c4988b1 --- /dev/null +++ b/docs/installation/nixos_en.md @@ -0,0 +1,15 @@ +# Installing on NixOS + +NixOS contains a source build package of pleroma and a NixOS module to install it. +For installation add this to your configuration.nix and add a config.exs next to it: +```nix + services.pleroma = { + enable = true; + configs = [ (lib.fileContents ./config.exs) ]; + secretConfigFile = "/var/lib/pleroma/secret.exs"; + }; +``` + +## Questions +The nix community uses matrix for communication: [#nix:nixos.org](https://matrix.to/#/#nix:nixos.org) + |