diff --git a/system/hosts/sail.nix b/system/hosts/sail.nix index faf354b..70eea7f 100644 --- a/system/hosts/sail.nix +++ b/system/hosts/sail.nix @@ -18,6 +18,8 @@ in (import ../nixos/freshrss.nix (args // { inherit secret; })) + ../nixos/libreddit.nix + (import ../nixos/mastodon.nix (args // { inherit secret; })) ../nixos/synapse.nix diff --git a/system/nixos/libreddit.nix b/system/nixos/libreddit.nix new file mode 100644 index 0000000..9ab9d01 --- /dev/null +++ b/system/nixos/libreddit.nix @@ -0,0 +1,8 @@ +{ + services.libreddit = { + enable = true; + + address = "127.0.0.1"; + port = 8002; + }; +}