22 lines
411 B
Nix
Raw Normal View History

{ config, lib, pkgs, user, ... }:
2023-09-17 17:04:49 -07:00
let
cfg = config.modules.devel.notes;
in {
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
config = lib.mkIf cfg.enable {
2023-12-25 23:37:35 -08:00
nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0"
];
2023-09-17 17:04:49 -07:00
environment.systemPackages = with pkgs; [
pandoc
gollum
obsidian
2023-09-17 17:04:49 -07:00
zk
# for zk
bat
2023-10-08 10:05:31 -07:00
fzf
2023-09-17 17:04:49 -07:00
];
};
}