* flake.lock update, with code changes needed. * miniserve.rs static directory listing. * change from typst-ls to tinymist for typst lsp * deletion of hugo template. * change from self-built duckdns module to nixpkgs one.
19 lines
273 B
Nix
19 lines
273 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
font = {
|
|
package = pkgs.nerd-fonts.fira-code;
|
|
name = "FiraCode Nerd Font";
|
|
};
|
|
themeFile = "gruvbox-dark";
|
|
settings = {
|
|
background_opacity = "0.8";
|
|
};
|
|
};
|
|
}
|