[feat] Add goread module and config
This commit is contained in:
32
common/goread.nix
Normal file
32
common/goread.nix
Normal file
@@ -0,0 +1,32 @@
|
||||
{ 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";
|
||||
}
|
||||
];
|
||||
}];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user