dotfiles/modules/editors/doomemacs.nix

14 lines
225 B
Nix
Raw Permalink Normal View History

2022-11-15 06:19:54 +01:00
{ config, options, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.editors.doomemacs;
in {
options.modules.editors.doomemacs = {
enable = mkOption {
type = types.bool;
default = false;
};
};
}