added toml and font to zed

This commit is contained in:
willifan 2025-01-11 20:02:49 +01:00
parent 579842cddd
commit 49e9accbf2

View file

@ -1,7 +1,9 @@
{ lib, config, ... }:
{ lib, config, pkgs, ... }:
lib.mkIf config.desktop.enable {
home-manager.users.willifan.programs.zed-editor = {
enable = true;
extensions = [ "nix" ];
extensions = [ "nix" "toml" ];
};
fonts.packages = [ pkgs.nerd-fonts.jetbrains-mono ];
}