mirror of
https://github.com/nmasur/dotfiles
synced 2025-11-03 13:33:15 +00:00
26 lines
385 B
Nix
26 lines
385 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.presets.programs.chawan;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.presets.programs.chawan.enable = lib.mkEnableOption "chawan TUI web browser";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
# Set Chawan as the default app for manual pages
|
|
home.sessionVariables = {
|
|
MANPAGER = "${lib.getExe pkgs.chawan} -T text/x-ansi";
|
|
};
|
|
|
|
};
|
|
|
|
}
|