Compare commits

..

4 Commits

Author SHA1 Message Date
Noah Masur
2848ae9424 switch kitty to victormono font 2022-11-19 19:40:04 -07:00
Noah Masur
a6f9b985fc Revert "force neovim fish shell in toggleterm"
This reverts commit d1f12671b0.
2022-11-19 19:12:04 -07:00
Noah Masur
d1f12671b0 force neovim fish shell in toggleterm 2022-11-19 19:12:01 -07:00
Noah Masur
30f9f869a7 force fish shell for kitty 2022-11-19 19:11:26 -07:00
2 changed files with 5 additions and 5 deletions

View File

@ -8,8 +8,8 @@
programs.alacritty.settings = { font.normal.family = "VictorMono"; };
programs.kitty.font = {
package = pkgs.nerdfonts;
name = "Victor Mono";
package = (pkgs.nerdfonts.override { fonts = [ "VictorMono" ]; });
name = "VictorMono Nerd Font Mono";
};
};

View File

@ -6,7 +6,7 @@
darwinLaunchOptions = [ "--start-as=fullscreen" ];
font.size = lib.mkForce 20;
settings = {
shell = "${pkgs.fish}/bin/fish";
shell = "/run/current-system/sw/bin/fish";
macos_traditional_fullscreen = true;
macos_quit_when_last_window_closed = true;
};