20 lines
316 B
Nix
Raw Normal View History

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