mirror of
https://github.com/heyitschloehawthorne/nix-config.git
synced 2025-12-15 10:48:39 +11:00
Fixed split Alacritty config
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ pkgs, ... }:
|
||||
alacritty = {
|
||||
{ pkgs, ... }: {
|
||||
|
||||
enable = true;
|
||||
settings = {
|
||||
font.normal.family = "CozetteVector";
|
||||
@@ -31,4 +31,4 @@
|
||||
white = "0xfff1f3";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user