mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-07 17:04:00 +01:00
2e0693f4ce
Used for terminal-based slideshows with markdown. Wow your audience with a cool terminal background blur effect not present in any other mainstream tools.
18 lines
298 B
Nix
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;
|
|
};
|
|
}
|