mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
13 lines
348 B
Nix
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
|
|
];
|
|
};
|
|
}
|