From 238ece0ca6278f88b1e5b1d7d09011bede950614 Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Tue, 30 Sep 2025 16:48:22 +0200 Subject: [PATCH] comment --- users/kopatz/home.nix | 140 +----------------------------------------- 1 file changed, 1 insertion(+), 139 deletions(-) diff --git a/users/kopatz/home.nix b/users/kopatz/home.nix index 9b34bde..9eb5a35 100644 --- a/users/kopatz/home.nix +++ b/users/kopatz/home.nix @@ -22,7 +22,7 @@ #../../home-manager/kde-path.nix ../../home-manager/kitty.nix #../../home-manager/lf.nix broken atm - ../../home-manager/nixvim + ../../home-manager/nixvim # nixvim adds ~2-3 secs to eval time even when just using programs.nixvim.enable = true; ../../home-manager/rofi ../../home-manager/dunst.nix ../../home-manager/opensnitch-ui.nix @@ -52,142 +52,4 @@ }; }; - programs.newsboat = { - enable = false; - extraConfig = '' - bind-key j down - bind-key k up - bind-key J next-feed articlelist - bind-key K prev-feed articlelist - bind-key G end - bind-key g home - bind-key l open - bind-key h quit - - # general settings - auto-reload yes - download-full-page yes - max-items 100 - # limit width so articles are more readable - text-width 80 - # solarized - color background color223 default - color listnormal color4 default - color listnormal_unread color2 default - color listfocus color223 color237 bold - color listfocus_unread color223 color237 bold - color info color8 color0 - color article color223 default - - # highlights - highlight article "^(Feed|Link):.*$" color11 default bold - highlight article "^(Title|Date|Author):.*$" color11 default bold - highlight article "https?://[^ ]+" color2 default underline - highlight article "\\[[0-9]+\\]" color2 default bold - highlight article "\\[image\\ [0-9]+\\]" color2 default bold - highlight feedlist "^─.*$" color6 color6 bold - ''; - urls = [ - { - title = "r/NixOS"; - tags = [ "nixos" "nix" "reddit" ]; - url = "https://www.reddit.com/r/NixOS.rss"; - } - { - title = "Hacker News"; - url = "https://hnrss.org/newest"; - } - { - title = "Phoronix"; - url = "https://www.phoronix.com/rss.php"; - } - { - title = "LWN"; - url = "https://lwn.net/headlines/rss"; - } - { - title = "/g/"; - tags = [ "4chan" "technology" ]; - url = "https://boards.4channel.org/g/index.rss"; - } - { - title = "ZDI Blog"; - tags = [ "zeroday" "security" ]; - url = "https://www.zerodayinitiative.com/blog/?format=rss"; - } - { - title = "ZDI Published Advisories"; - tags = [ "zeroday" "security" ]; - url = "https://www.zerodayinitiative.com/rss/published/"; - } - { - title = "ZDI Upcoming Advisories"; - tags = [ "zeroday" "security" ]; - url = "https://www.zerodayinitiative.com/rss/upcoming/"; - } - { - title = "The Hackers News"; - tags = [ "security" ]; - url = "https://feeds.feedburner.com/TheHackersNews"; - } - { - title = "NIST"; - tags = [ "security" ]; - url = "https://www.nist.gov/news-events/cybersecurity/rss.xml"; - } - { - title = "The Register"; - tags = [ "news" "technology" ]; - url = "https://www.theregister.com/headlines.rss"; - } - { - title = "Darknet Hackers"; - tags = [ "security" ]; - url = "http://feeds.feedburner.com/darknethackers"; - } - { - title = "Dark Reading"; - tags = [ "security" ]; - url = "http://www.darkreading.com/rss.xml"; - } - { - title = "InfoSecurity Magazine"; - tags = [ "security" ]; - url = "http://www.infosecurity-magazine.com/rss/news/"; - } - { - title = "Krebs on Security"; - tags = [ "security" ]; - url = "http://krebsonsecurity.com/feed/"; - } - { - title = "Schneier on Security"; - tags = [ "security" ]; - url = "http://www.schneier.com/blog/index.rdf"; - } - { - title = "ThreatPost"; - tags = [ "security" ]; - url = "http://threatpost.com/feed/"; - } - { - title = "CVE Feed all"; - tags = [ "security" ]; - url = "https://cvefeed.io/rssfeed/latest.xml"; - } - { - title = "CVE Feed critical and high"; - tags = [ "security" ]; - url = "https://cvefeed.io/rssfeed/severity/high.xml"; - } - { - title = "Terminal Trove"; - tags = [ "terminal" "cli" ]; - url = "https://terminaltrove.com/new.xml"; - } - - ]; - }; - - #colorScheme = import ../../home-manager/themes/yorha/colors.nix; }