mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
19 lines
329 B
Nix
19 lines
329 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; [
|
|
pandoc
|
|
gollum
|
|
obsidian
|
|
zk
|
|
# for zk
|
|
bat
|
|
fzf
|
|
];
|
|
};
|
|
}
|