nix-config/home/presenterm.nix
Donovan Glover 2e0693f4ce
home: add presenterm
Used for terminal-based slideshows with markdown. Wow your audience
with a cool terminal background blur effect not present in any other
mainstream tools.
2024-10-10 13:34:49 -04:00

18 lines
298 B
Nix

{ pkgs, ... }:
let
inherit (builtins) toJSON;
in
{
home.packages = with pkgs; [ presenterm ];
xdg.configFile."presenterm/config.yaml".text = toJSON {
defaults = {
theme = "terminal-dark";
validate_overflows = "always";
};
options.implicit_slide_ends = true;
};
}