This commit is contained in:
Michael Thomson 2025-01-02 09:17:09 -05:00
parent 1c89a70e0d
commit a818d3d1df
No known key found for this signature in database
GPG Key ID: 8EFECCD347C72F7D
4 changed files with 55 additions and 34 deletions

View File

@ -16,6 +16,7 @@
../../modules/home-manager/nix-index.nix ../../modules/home-manager/nix-index.nix
../../modules/home-manager/bitwarden.nix ../../modules/home-manager/bitwarden.nix
../../modules/home-manager/latex.nix ../../modules/home-manager/latex.nix
../../modules/home-manager/ghostty.nix
]; ];
home.username = "mthomson"; home.username = "mthomson";
home.homeDirectory = "/Users/mthomson"; home.homeDirectory = "/Users/mthomson";

View File

@ -0,0 +1,15 @@
{
pkgs,
config,
...
}: {
programs.ghostty = {
enable = true;
enableZshIntegration = true;
installVimSyntax = true;
settings = {
font-family = "JetBrainsMono Nerd Font Mono";
macos-titlebar-style = "hidden";
};
};
}

View File

@ -17,9 +17,10 @@
# darwinLaunchOptions = [ # darwinLaunchOptions = [
# "--single-instance" # "--single-instance"
# ]; # ];
# settings = { settings = {
# background_opacity = "0.9"; # background_opacity = "0.9";
# background_blur = 5; # background_blur = 5;
# }; hide_window_decorations = "titlebar-only";
};
}; };
} }

View File

@ -370,36 +370,36 @@ lib,
picker = "minipick"; picker = "minipick";
}; };
}; };
# obsidian = { obsidian = {
# enable = true; enable = true;
# settings = { settings = {
# completion = { completion = {
# min_chars = 1; min_chars = 1;
# nvim_cmp = true; nvim_cmp = true;
# }; };
# notes_subir = "notes"; notes_subir = "notes";
# new_notes_location = "notes_subdir"; new_notes_location = "notes_subdir";
# templates = { templates = {
# folder = "templates"; folder = "templates";
# }; };
# workspaces = [ workspaces = [
# { {
# name = "personal"; name = "personal";
# path = "~/vaults/personal"; path = "~/vaults/personal";
# } }
# ]; ];
# picker = { picker = {
# name = "mini.pick"; name = "mini.pick";
# }; };
# daily_notes = { daily_notes = {
# folder = "dailies"; folder = "dailies";
# default_tags = [ "type/daily" ]; default_tags = [ "type/daily" ];
# }; };
# }; };
# }; };
# render-markdown = { render-markdown = {
# enable = true; enable = true;
# }; };
friendly-snippets = { friendly-snippets = {
enable = true; enable = true;
}; };
@ -499,6 +499,10 @@ lib,
}; };
}; };
}; };
hls = {
enable = true;
installGhc = true;
};
ts_ls = { ts_ls = {
enable = true; enable = true;
}; };