nix: move alacritty to charles

This commit is contained in:
Roman Godmaire 2024-04-04 16:04:08 -04:00
parent 204cbf07c6
commit 14c77bfa9e
2 changed files with 32 additions and 28 deletions

View file

@ -5,4 +5,36 @@
home.username = "dtingley"; home.username = "dtingley";
home.homeDirectory = "/Users/dtingley"; home.homeDirectory = "/Users/dtingley";
# Overrides
programs.emacs.package = lib.mkForce pkgs.emacs-macport;
programs.alacritty = {
enable = true;
settings = {
font = {
normal.family = "Hack Nerd Font Mono";
size = 12.0;
};
colors = {
primary = {
background = "#282828";
foreground = "#ebdbb2";
};
normal = {
black = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
magenta = "#b16286";
cyan = "#689d6a";
white = "#ebdbb2";
};
};
};
};
} }

View file

@ -65,34 +65,6 @@
programs.home-manager.enable = true; programs.home-manager.enable = true;
# Shell configurations # Shell configurations
programs.alacritty = {
enable = true;
settings = {
font = {
normal.family = "Hack Nerd Font Mono";
size = 12.0;
};
colors = {
primary = {
background = "#282828";
foreground = "#ebdbb2";
};
normal = {
black = "#282828";
red = "#cc241d";
green = "#98971a";
yellow = "#d79921";
blue = "#458588";
magenta = "#b16286";
cyan = "#689d6a";
white = "#ebdbb2";
};
};
};
};
programs.fish = { programs.fish = {
enable = true; enable = true;
shellInit = '' shellInit = ''