mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
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.
This commit is contained in:
parent
5d5c4d7853
commit
2e0693f4ce
17
home/presenterm.nix
Normal file
17
home/presenterm.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user