28 lines
569 B
Nix
28 lines
569 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.zed-editor = {
|
|
enable = true;
|
|
extensions = [
|
|
"nix"
|
|
"toml"
|
|
"rust"
|
|
];
|
|
|
|
userSettings = {
|
|
theme = {
|
|
mode = "system";
|
|
dark = "Kanagawa Dragon";
|
|
light = "Kanagawa Lotus";
|
|
};
|
|
hour_format = "hour24";
|
|
vim_mode = false;
|
|
buffer_font_size = 12.0;
|
|
buffer_font_family = "PlemolJP Console NF";
|
|
};
|
|
};
|
|
fonts.fontconfig.enable = true;
|
|
home.file.".local/share/fonts/plemoljp".source =
|
|
"${pkgs.plemoljp-nf}/share/fonts/truetype/plemoljp-nf-console";
|
|
}
|