snapshot pre-autoupdate-2026-05-26T09-24-05Z

This commit is contained in:
2026-05-26 11:24:05 +02:00
parent c6488c7d47
commit 43df516fa2
3 changed files with 32 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
{inputs, ... }: {
flake.homeModules.notewrapper = {pkgs, ...}: {
home.packages = [
inputs.notewrapper.packages.${pkgs.system}.default
];
home.file.".config/notewrapper/config.json" = {
enable = true;
force = true;
text = ''
{
"directory": ["~/Documents/Notes/", "~/test/"],
"render": true,
"jumpToEndOfFileOnLaunch": true,
"editor": "neovim",
"journalRegex": ".*journal.*",
"dateEntry": "# %Y %m %d %a",
"newLineOnOpening": true,
"backup": {
"enable": true,
"directory": {
"~/Documents/Notes/": "~/kdrive/Notes/",
"~/test/": "~/backupTest/"
},
"interval": "daily",
"rsyncArgs": ["-Lqah", "--update"]
}
}
'';
};
};
}
+1
View File
@@ -63,6 +63,7 @@
librewolf
mullvad
neovim
notewrapper
oh-my-zsh
ripgrep
rofi
-1
View File
@@ -24,7 +24,6 @@
self.packages.${pkgs.system}.custom-syllabes
pkgs-unstable.bitwarden-desktop
fluffychat # matrix client
inputs.notewrapper.packages.${pkgs.system}.default
];
};
}