From 97f8ac92a1086dc76b204a9055ca60dd8d75dfe9 Mon Sep 17 00:00:00 2001 From: Aaron Manning Date: Tue, 15 Sep 2026 19:54:40 +1000 Subject: [PATCH] readme update --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7de631f..ff1dc68 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,26 @@ # Minimal YouTube -A website designed to give you an old style YouTube subscription feed, based on the RSS feeds. An instance of this website is hosted [here](https://yt.aaronmanning.net), and you can read more about the technical side of the website [here](https://aaronmanning.net/blog/minimal%20youtube%20and%20the%20locality%20of%20behaviour%20stack.html). +A website designed to give an old style YouTube subscription feed, based on the RSS feeds. + +For more information, read [this blog post](https://aaronmanning.net/blog/minimal%20youtube%20and%20the%20locality%20of%20behaviour%20stack.html). + +## NixOS Setup + +To set this up as a service on NixOS, include + +``` +minimal-youtube = { + url = git+https://git.aaronmanning.net/aaronmanning/minimal-youtube.git; +}; +``` + +in your flake inputs, and include `inputs.minimal-youtube.nixosModules.default` in your list of modules. + +Then in `configuration.nix`, set the following: + +``` +custom.minimal-youtube.enable = true; +custom.minimal-youtube.port = 8884; +``` + +The default port is `8080`, but can be set to anything as above.