Files
dotfiles/common/goread.nix
2024-03-15 22:24:15 +05:30

33 lines
870 B
Nix

{ pkgs, ... }: {
imports = [ ../modules/goread.nix ];
programs.goread = {
enable = true;
config = {
urls = {
categories = [{
name = "Rust";
desc = "Stuff related to the rust programming language";
subscriptions = [
{
name = "r/rust";
desc = "The rust subreddit";
url = "https://www.reddit.com/r/rust/.rss";
}
{
name = "thesquareplanet";
desc = "jonhoo's blog";
url = "https://thesquareplanet.com/feed.xml";
}
{
name = "Jon Gjengset's Youtube";
desc = "jonhoo's youtube channel";
url = "https://www.youtube.com/feeds/videos.xml?channel_id=UC_iD0xppBwwsrM9DegC5cQQ";
}
];
}];
};
};
};
}