[feat] Add some stuff

This commit is contained in:
uttarayan21
2024-03-17 02:45:41 +05:30
parent 6f1cb3da8f
commit e0dffb350d
7 changed files with 177 additions and 34 deletions

14
common/tuifeed.nix Normal file
View File

@@ -0,0 +1,14 @@
{ ... }: {
imports = [ ../modules/tuifeed.nix ];
programs.tuifeed = {
enable = true;
config = {
sources = {
"r/rust" = "https://www.reddit.com/r/rust/.rss";
"thesquareplanet" = "https://thesquareplanet.com/feed.xml";
"Jon Gjengset (YouTube)" = "https://www.youtube.com/feeds/videos.xml?channel_id=UC_iD0xppBwwsrM9DegC5cQQ";
};
};
};
}