Compare commits

..

3 Commits

Author SHA1 Message Date
c2da0a66c8
Merge remote-tracking branch 'refs/remotes/origin/master'
All checks were successful
Test templates, puts into cache / nix (nix-runner) (push) Successful in 5m34s
2025-04-03 21:54:56 -05:00
8743fd49cd
newsboat config 2025-04-03 21:54:34 -05:00
8bfa12f11d
Starting to add mdt task management but why
All checks were successful
Test templates, puts into cache / nix (nix-runner) (push) Successful in 5m30s
2025-04-03 11:04:51 -05:00
3 changed files with 67 additions and 0 deletions

18
flake.lock generated
View File

@ -99,6 +99,23 @@
"type": "github"
}
},
"mdt": {
"flake": false,
"locked": {
"lastModified": 1687191858,
"narHash": "sha256-823Poh8vwhEAa6uJntDY7G2i/dCTzOffklhcPX8rgZM=",
"owner": "basilioss",
"repo": "mdt",
"rev": "8c8e47c43ae7dedc71285ecf28543ada8ebd1fdb",
"type": "github"
},
"original": {
"owner": "basilioss",
"ref": "main",
"repo": "mdt",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1735554305,
@ -286,6 +303,7 @@
"claude-mcp-bundle": "claude-mcp-bundle",
"cmp-vimtex": "cmp-vimtex",
"homeManager-24-11": "homeManager-24-11",
"mdt": "mdt",
"nixpkgs": "nixpkgs_2",
"nixpkgs-24-11": "nixpkgs-24-11",
"nomodoro": "nomodoro",

View File

@ -52,6 +52,12 @@
url = "git+ssh://git@gitea.deepak.science:2222/deepak/claude_mcp_bundle.git";
inputs.nixpkgs.follows = "nixpkgs";
};
mdt = {
url = "github:basilioss/mdt/main";
flake = false;
};
};
outputs =

View File

@ -312,6 +312,49 @@ in
freshrss-url "https://freshrss.deepak.science/api/greader.php"
freshrss-login "deepak"
freshrss-passwordfile "${config.sops.secrets.freshrssapikey.path}"
## ## ## ## ## ## ##
## ## Stolen from https://forums.freebsd.org/threads/newsboat-rss-reader-enable-vim-key-bindings.69448/
## ##
## ## Disabling the browser but could consider using w3m?
## ##
## ## ## ## ## ## ##
# general settings
auto-reload yes
max-items 50
# externel browser
# browser "/usr/local/bin/w3m %u"
# macro m set browser "/usr/local/bin/mpv %u"; open-in-browser ; set browser "/usr/local/bin/w3m %u"
# macro l set browser "/usr/local/bin/firefox %u"; open-in-browser ; set browser "/usr/local/bin/w3m %u"
# unbind keys
# unbind-key ENTER
unbind-key j
unbind-key k
unbind-key J
unbind-key K
# bind keys - vim style
bind-key j down
bind-key k up
# bind-key l open
# bind-key h quit
# solarized
color background default default
color listnormal default default
color listnormal_unread default default
color listfocus black cyan
color listfocus_unread black cyan
color info default black
color article default default
# highlights
highlight article "^(Title):.*$" blue default
highlight article "https?://[^ ]+" red default
highlight article "\\[image\\ [0-9]+\\]" green default
'';
};