19 lines
304 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
];
};
}