38 lines
844 B
Nix
38 lines
844 B
Nix
{
|
|
config,
|
|
options,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib.attrsets) attrValues;
|
|
inherit (lib.modules) mkIf mkMerge;
|
|
cfg = config.modules.desktop.editors;
|
|
in {
|
|
options.modules.desktop.editors = let
|
|
inherit (lib.options) mkOption;
|
|
inherit (lib.types) nullOr enum;
|
|
in {
|
|
default = mkOption {
|
|
type = nullOr (enum [ "nano" "nvim" ]);
|
|
default = "nano";
|
|
description = "Default editor for text manipulation";
|
|
example = "nvim";
|
|
};
|
|
};
|
|
|
|
config = mkMerge [
|
|
(mkIf (cfg.default != null) {
|
|
home.sessionVariables = {
|
|
EDITOR = cfg.default;
|
|
};
|
|
})
|
|
|
|
(mkIf (cfg.default == "nvim") {
|
|
user.packages = attrValues {
|
|
inherit (pkgs) imagemagick editorconfig-core-c sqlite deno pandoc nuspell;
|
|
inherit (pkgs.hunspellDicts) en_GB nl_NL;
|
|
};
|
|
})
|
|
];
|
|
}
|