mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
chawan: init module (#6768)
This is a super cool TUI browser capable of CSS and other cool stuff. Reminiscent of ELinks but modern and better. More info here: https://sr.ht/~bptato/chawan/
This commit is contained in:
parent
b35bccc32d
commit
cb65c81403
2 changed files with 48 additions and 0 deletions
|
|
@ -84,6 +84,7 @@ let
|
|||
./programs/carapace.nix
|
||||
./programs/cava.nix
|
||||
./programs/cavalier.nix
|
||||
./programs/chawan.nix
|
||||
./programs/chromium.nix
|
||||
./programs/cmus.nix
|
||||
./programs/command-not-found/command-not-found.nix
|
||||
|
|
|
|||
47
modules/programs/chawan.nix
Normal file
47
modules/programs/chawan.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.programs.chawan;
|
||||
tomlFormat = (pkgs.formats.toml { });
|
||||
tomlType = tomlFormat.type;
|
||||
toConf = tomlFormat.generate "config.toml";
|
||||
in
|
||||
{
|
||||
meta.maintainers = [ lib.maintainers.noodlez1232 ];
|
||||
|
||||
options.programs.chawan = {
|
||||
enable = lib.mkEnableOption "chawan, A TUI web browser";
|
||||
package = lib.mkPackageOption pkgs "chawan" { nullable = true; };
|
||||
settings = lib.mkOption {
|
||||
default = { };
|
||||
type = tomlType;
|
||||
description = ''
|
||||
Configuration options for chawan.
|
||||
|
||||
See {manpage}`cha-config(5)`
|
||||
'';
|
||||
example = lib.literalExpression ''
|
||||
{
|
||||
buffer = {
|
||||
images = true;
|
||||
autofocus = true;
|
||||
};
|
||||
pager."C-k" = "() => pager.load('https://duckduckgo.com/?=')";
|
||||
}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
|
||||
xdg.configFile = lib.mkIf (cfg.settings != { }) {
|
||||
"chawan/config.toml" = {
|
||||
source = toConf cfg.settings;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue