Files
nixos/home/modules/zed.nix
T
Greg Hellings 293bb518d6 Update editors
Add remote-nvim plugin
Switch away from Zed FHS
2025-05-08 12:52:16 -05:00

21 lines
249 B
Nix

{
pkgs,
config,
lib,
...
}:
let
cfg = config.greg.zed;
in
{
options.greg.zed = lib.mkEnableOption "Whether to install the Zed editor";
config = lib.mkIf cfg {
home.packages = with pkgs; [
nil
zed-editor
];
};
}