update
This commit is contained in:
parent
1c89a70e0d
commit
a818d3d1df
@ -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";
|
||||||
|
15
modules/home-manager/ghostty.nix
Normal file
15
modules/home-manager/ghostty.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -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";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user