Fixed split Alacritty config

This commit is contained in:
Chloe Hawthorne
2025-01-01 17:48:00 +11:00
parent d951679ced
commit 95dc92030a
2 changed files with 5 additions and 38 deletions

View File

@@ -1,5 +1,5 @@
{ pkgs, ... }:
alacritty = {
{ pkgs, ... }: {
enable = true;
settings = {
font.normal.family = "CozetteVector";
@@ -31,4 +31,4 @@
white = "0xfff1f3";
};
};
};
}

View File

@@ -10,7 +10,6 @@
}: {
# You can import other home-manager modules here
imports = [
./alacritty.nix
];
@@ -55,40 +54,8 @@
};
programs = {
# Alacritty Config
alacritty = {
enable = true;
settings = {
font.normal.family = "CozetteVector";
font.bold.family = "CozetteVector";
font.bold.style = "bold";
font.size = 12.0;
colors.primary = {
background = "0x2D2A2E";
foreground = "0xfff1f3";
};
colors.normal = {
black = "0x2c2525";
red = "0xfd6883";
green = "0xadda78";
yellow = "0xf9cc6c";
blue = "0xf38d70";
magenta = "0xa8a9eb";
cyan = "0x85dacc";
white = "0xfff1f3";
};
colors.bright = {
black = "0x72696a";
red = "0xfd6883";
green = "0xadda78";
yellow = "0xf9cc6c";
blue = "0xf38d70";
magenta = "0xa8a9eb";
cyan = "0x85dacc";
white = "0xfff1f3";
};
};
};
alacritty = import ./alacritty.nix { inherit pkgs; };
# ZSH Config
zsh = {
enable = true;