13 lines
350 B
Nix
Raw Normal View History

{ config, lib, pkgs, user, ... }:
2023-09-17 17:04:49 -07:00
2024-10-24 22:31:43 -07:00
let cfg = config.modules.devel.notes;
2023-09-17 17:04:49 -07:00
in {
options.modules.devel.notes.enable = lib.mkEnableOption "notes";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
obsidian # Note-taking and knowledge management application.
2024-10-24 22:31:43 -07:00
pandoc # Universal document converter.
2023-09-17 17:04:49 -07:00
];
};
}