aboutsummaryrefslogtreecommitdiffstats
path: root/home/nom.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/nom.nix')
-rw-r--r--home/nom.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/home/nom.nix b/home/nom.nix
new file mode 100644
index 0000000..b1ceffc
--- /dev/null
+++ b/home/nom.nix
@@ -0,0 +1,20 @@
+{ config, pkgs, ... }:
+{
+ xdg.configFile."nom/config.yml".text = ''
+ autoread: true
+ ordering: desc
+ showread: false
+ openers:
+ - regex: "youtube"
+ cmd: "mpv %s"
+ - regex: ".*"
+ cmd: "${pkgs.firefox}/bin/firefox %s"
+ refreshinterval: 5
+ filtering:
+ defaultIncludeFeedName: true
+ backends:
+ miniflux:
+ host: https://flux.tammi.cc
+ api_key: $(${pkgs.coreutils}/bin/cat ${config.age.secrets.miniflux_api_key.path})
+ '';
+}