2024-12-05 12:41:02 -08:00

13 lines
348 B
Nix

{ 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; [
obsidian # Note-taking and knowledge management application
pandoc # Universal document converter
];
};
}