Skip to content

Instantly share code, notes, and snippets.

@pinpox

pinpox/news.nix Secret

Created October 14, 2020 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pinpox/4aac7e4fa6dc638ec931038f3af289db to your computer and use it in GitHub Desktop.
Save pinpox/4aac7e4fa6dc638ec931038f3af289db to your computer and use it in GitHub Desktop.
programs.newsboat = {
enable = true;
autoReload = true;
urls = [
{
title = "nixOS mobile";
tags = [ "nixos" "nix" ];
url = "https://mobile.nixos.org/index.xml";
}
{
title = "r/NixOS";
tags = [ "nixos" "nix" "reddit" ];
url = "https://www.reddit.com/r/NixOS.rss";
}
] ++ (map (x: { url = x; })
(lib.splitString "\n" (builtins.readFile ./youtube.txt)));
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment