mirror of
https://github.com/heyitschloehawthorne/nix-config.git
synced 2025-12-16 03:08:38 +11:00
Fixed split Alacritty config
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }: {
|
||||||
alacritty = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
font.normal.family = "CozetteVector";
|
font.normal.family = "CozetteVector";
|
||||||
@@ -31,4 +31,4 @@
|
|||||||
white = "0xfff1f3";
|
white = "0xfff1f3";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@
|
|||||||
}: {
|
}: {
|
||||||
# You can import other home-manager modules here
|
# You can import other home-manager modules here
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty.nix
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -55,40 +54,8 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
# Alacritty Config
|
alacritty = import ./alacritty.nix { inherit pkgs; };
|
||||||
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";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
# ZSH Config
|
# ZSH Config
|
||||||
zsh = {
|
zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user