--wip-- [skip ci]

This commit is contained in:
Filippo Berto 2025-09-08 11:36:45 +02:00
parent eea02abfcb
commit 762085707c
136 changed files with 261 additions and 261 deletions

View file

@ -0,0 +1,16 @@
{ pkgs
, lib
, config
, ...
}:
let tomlGenerate = (pkgs.formats.toml { }).generate "bottom-toml"; in {
home.packages = lib.optionals config.programs.helix.enable [
# pkgs.marksman
pkgs.markdown-oxide
];
xdg.configFile."moxide/settings.toml".source = tomlGenerate {
dailynote = "%Y-%m-%d";
new_file_folder_path = "pages/";
daily_notes_folder = "journals/";
};
}