This repository has been archived on 2025-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nixos-config/options/home/editors/default.nix

17 lines
254 B
Nix

{
lib,
config,
...
}:
let
cfg = config.home.editors;
in
{
options.home.editors = {
enable = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Text, media & audio editors configurations.";
};
};
}