diff options
author | marcin mikołajczak <git@mkljczk.pl> | 2023-02-19 22:02:03 +0100 |
---|---|---|
committer | marcin mikołajczak <git@mkljczk.pl> | 2023-02-19 22:02:03 +0100 |
commit | 92592c25c219f44ab6454762f5a5a97e800f5b1d (patch) | |
tree | f1db48a9b222d875841c43b9c5f9b6d2c810a500 /docs/installation/nixos_en.md | |
parent | 3ed39e310939d90ddbad7bd7ffa1ebd8aca6e74c (diff) | |
parent | 8a0162cd9694a1c5bf131fefb6e6a8d3dcb68fae (diff) | |
download | pleroma-92592c25c219f44ab6454762f5a5a97e800f5b1d.tar.gz pleroma-92592c25c219f44ab6454762f5a5a97e800f5b1d.zip |
Merge remote-tracking branch 'pleroma/develop' into status-notification-type
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) + |