mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 19:49:45 +01:00
newsboat: add module
This commit is contained in:
parent
f3473b9eba
commit
4caa45b8bb
3 changed files with 106 additions and 0 deletions
|
@ -665,6 +665,13 @@ in
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2018-06-09T09:11:59+00:00";
|
||||||
|
message = ''
|
||||||
|
A new module is available: `programs.newsboat`.
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,7 @@ let
|
||||||
./programs/man.nix
|
./programs/man.nix
|
||||||
./programs/mercurial.nix
|
./programs/mercurial.nix
|
||||||
./programs/neovim.nix
|
./programs/neovim.nix
|
||||||
|
./programs/newsboat.nix
|
||||||
./programs/pidgin.nix
|
./programs/pidgin.nix
|
||||||
./programs/rofi.nix
|
./programs/rofi.nix
|
||||||
./programs/ssh.nix
|
./programs/ssh.nix
|
||||||
|
|
98
modules/programs/newsboat.nix
Normal file
98
modules/programs/newsboat.nix
Normal file
|
@ -0,0 +1,98 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.programs.newsboat;
|
||||||
|
wrapQuote = x: "\"${x}\"";
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
programs.newsboat = {
|
||||||
|
enable = mkEnableOption "the Newsboat feed reader.";
|
||||||
|
|
||||||
|
urls = mkOption {
|
||||||
|
type = types.listOf types.attrs;
|
||||||
|
default = [];
|
||||||
|
example = [{url = "http://example.com"; tags = ["foo" "bar"];}];
|
||||||
|
description = "List of urls and tokens.";
|
||||||
|
};
|
||||||
|
|
||||||
|
maxItems = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = 0;
|
||||||
|
description = "Maximum number of items per feed, 0 for infinite.";
|
||||||
|
};
|
||||||
|
|
||||||
|
reloadThreads = mkOption {
|
||||||
|
type = types.int;
|
||||||
|
default = 5;
|
||||||
|
description = "How many threads to use for updating the feeds.";
|
||||||
|
};
|
||||||
|
|
||||||
|
autoReload = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = false;
|
||||||
|
description = "Whether to enable automatic reloading while newsboat is running.";
|
||||||
|
};
|
||||||
|
|
||||||
|
reloadTime = mkOption {
|
||||||
|
type = types.nullOr types.int;
|
||||||
|
default = 60;
|
||||||
|
description = "Time in minutes between reloads.";
|
||||||
|
};
|
||||||
|
|
||||||
|
browser = mkOption {
|
||||||
|
type = types.string;
|
||||||
|
default = "${pkgs.xdg_utils}/bin/xdg-open";
|
||||||
|
description = "External browser to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
queries = mkOption {
|
||||||
|
type = types.attrsOf types.string;
|
||||||
|
default = {};
|
||||||
|
example = {
|
||||||
|
"foo" = "rssurl =~ \"example.com\"";
|
||||||
|
};
|
||||||
|
description = "A list of queries to use.";
|
||||||
|
};
|
||||||
|
|
||||||
|
extraConfig = mkOption {
|
||||||
|
type = types.lines;
|
||||||
|
default = "";
|
||||||
|
description = "Extra configuration values that will be appended to the end.";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
home.packages = [ pkgs.newsboat ];
|
||||||
|
home.file.".newsboat/urls".text =
|
||||||
|
let
|
||||||
|
urls = builtins.concatStringsSep "\n" (
|
||||||
|
map (u: builtins.concatStringsSep " " ([u.url] ++ (map wrapQuote u.tags)))
|
||||||
|
cfg.urls);
|
||||||
|
queries = builtins.concatStringsSep "\n" (
|
||||||
|
mapAttrsToList (n: v: "\"query:${n}:${escape ["\""] v}\"") cfg.queries);
|
||||||
|
|
||||||
|
in
|
||||||
|
|
||||||
|
''
|
||||||
|
${urls}
|
||||||
|
|
||||||
|
${queries}
|
||||||
|
'';
|
||||||
|
home.file.".newsboat/config".text = ''
|
||||||
|
max-items ${toString cfg.maxItems}
|
||||||
|
browser ${cfg.browser}
|
||||||
|
reload-threads ${toString cfg.reloadThreads}
|
||||||
|
auto-reload ${if cfg.autoReload then "yes" else "no"}
|
||||||
|
${optionalString (cfg.reloadTime != null) (toString "reload-time ${toString cfg.reloadTime}")}
|
||||||
|
prepopulate-query-feeds yes
|
||||||
|
|
||||||
|
${cfg.extraConfig}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue