diff options
author | lain <lain@soykaf.club> | 2022-12-20 01:13:03 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2022-12-20 01:13:03 +0000 |
commit | 7aa17cd651a19d6940794294cf62ed5c88bc8ff3 (patch) | |
tree | 6785810b7df09bde93dbee529491eb2d41e99759 /docs | |
parent | c6dff687c0823f104574701519d29ce4aebd17ef (diff) | |
parent | 7b56690af4793ebd64e5b4ea60dfa018866567c0 (diff) | |
download | pleroma-7aa17cd651a19d6940794294cf62ed5c88bc8ff3.tar.gz pleroma-7aa17cd651a19d6940794294cf62ed5c88bc8ff3.zip |
Merge branch 'doc_readme_nixos' into 'develop'
add nixos to supported distros
See merge request pleroma/pleroma!3600
Diffstat (limited to 'docs')
-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) + |