1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-10 09:13:53 +00:00
ultima/modules/home/programs/gui/zed/default.nix
2024-12-09 10:15:55 +09:00

23 lines
485 B
Nix

{ x, lib, config, True, ... }:
with lib;
with x;
let cfg = config.module.programs.gui.zed;
in {
options = { module.programs.gui.zed = { enable = mkBool; }; };
config = mkIf cfg.enable {
programs.zed-editor = True // {
extensions = [ "nix" "city-lights" ];
userSettings = {
features = { copilot = false; };
telemetry = { metrics = false; };
vim_mode = true;
ui_font_size = 16;
buffer_font_size = 16;
};
};
};
}