1
0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-11-29 16:53:45 +01:00
git.oat.zone--dark-firepit-.../modules/editors/helix.nix
Jill "oatmealine" Monoids a8f93d7555 lucent-firepit shenanigans!!
2023-04-21 15:40:53 +02:00

18 lines
235 B
Nix

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