mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
10 lines
246 B
Nix
10 lines
246 B
Nix
{ config, lib, pkgs, tf, ... }: {
|
|
home.sessionVariables = {
|
|
HEDGEDOC_SERVER = "https://md.kittywit.ch";
|
|
HEDGEDOC_CONFIG_DIR = "${config.home.homeDirectory}/.config/hedgedoc";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
hedgedoc-cli
|
|
];
|
|
}
|