mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-21 15:53:32 +01:00
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;
|
||
|
};
|
||
|
}
|