Compare commits

..

No commits in common. "2848ae94240b3e9f38b3e63e6f99d4c908a77f5b" and "e1fc3317b54d3fae1feae97e677b1f7da641211a" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -3,13 +3,13 @@
home-manager.users.${config.user} = { home-manager.users.${config.user} = {
home.packages = with pkgs; home.packages = with pkgs;
[ (nerdfonts.override { fonts = [ "VictorMono" ]; }) ]; [ (nerdfonts.override { fonts = [ "Victor Mono" ]; }) ];
programs.alacritty.settings = { font.normal.family = "VictorMono"; }; programs.alacritty.settings = { font.normal.family = "Victor Mono"; };
programs.kitty.font = { programs.kitty.font = {
package = (pkgs.nerdfonts.override { fonts = [ "VictorMono" ]; }); package = pkgs.nerdfonts;
name = "VictorMono Nerd Font Mono"; name = "Victor Mono";
}; };
}; };

View File

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