woot, back up and running, the error was not at al related to nixvim...

This commit is contained in:
Chris Kruining 2024-09-01 20:26:21 +02:00
parent 0d0b074014
commit 39939714b7
5 changed files with 37 additions and 86 deletions

View file

@ -0,0 +1,19 @@
{ config, options, lib, pkgs, ... }:
let
inherit (lib.meta) getExe;
inherit (lib.modules) mkIf;
inherit (lib.attrsets) attrValues;
cfg = config.modules.desktop.editors.zed;
in
{
options.modules.desktop.editors.zed = let
inherit (lib.options) mkEnableOption;
in { enable = mkEnableOption "zed"; };
config = mkIf cfg.enable {
user.packages = attrValues {
inherit (pkgs) zed-editor;
};
};
}