1
0
Fork 0
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:
Nathaniel Barragan 2025-04-16 19:41:17 +00:00 committed by GitHub
parent b35bccc32d
commit cb65c81403
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 48 additions and 0 deletions

View file

@ -84,6 +84,7 @@ let
./programs/carapace.nix ./programs/carapace.nix
./programs/cava.nix ./programs/cava.nix
./programs/cavalier.nix ./programs/cavalier.nix
./programs/chawan.nix
./programs/chromium.nix ./programs/chromium.nix
./programs/cmus.nix ./programs/cmus.nix
./programs/command-not-found/command-not-found.nix ./programs/command-not-found/command-not-found.nix

View 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;
};
};
};
}