1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-05-19 14:16:09 +02:00
git.oat.zone--dark-firepit-.../modules/editors/doomemacs.nix
2022-11-15 06:19:54 +01:00

14 lines
225 B
Nix

{ config, options, pkgs, lib, ... }:
with lib;
let
cfg = config.modules.editors.doomemacs;
in {
options.modules.editors.doomemacs = {
enable = mkOption {
type = types.bool;
default = false;
};
};
}