put the enable in the correct scope

This commit is contained in:
Charlotte 🦝 Delenk 2022-01-19 09:59:45 +01:00
parent a8e97fb1b1
commit 090c9b8e06
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5

View file

@ -7,39 +7,40 @@
# Paraiso (dark) by Chris Kempson # Paraiso (dark) by Chris Kempson
# Alacritty colors # Alacritty colors
programs.alacritty.settings = { programs.alacritty = {
enable = true; enable = true;
colors = { settings = {
# Default Colors colors = {
primary = { # Default Colors
background = "0x2f1e2e"; primary = {
foreground = "0xa39e9b"; background = "0x2f1e2e";
}; foreground = "0xa39e9b";
};
# Normal Colors # Normal Colors
normal = { normal = {
black = "0x2f1e2e"; black = "0x2f1e2e";
red = "0xef6155"; red = "0xef6155";
green = "0x48b685"; green = "0x48b685";
yellow = "0xfec418"; yellow = "0xfec418";
blue = "0x06b6ef"; blue = "0x06b6ef";
magenta = "0x815ba4"; magenta = "0x815ba4";
cyan = "0x5bc4bf"; cyan = "0x5bc4bf";
white = "0xa39e9b"; white = "0xa39e9b";
}; };
# Bright Colors # Bright Colors
bright = { bright = {
black = "0x776e71"; black = "0x776e71";
red = "0xef6155"; red = "0xef6155";
green = "0x48b685"; green = "0x48b685";
yellow = "0xfec418"; yellow = "0xfec418";
blue = "0x06b6ef"; blue = "0x06b6ef";
magenta = "0x815ba4"; magenta = "0x815ba4";
cyan = "0x5bc4bf"; cyan = "0x5bc4bf";
white = "0xe7e9db"; white = "0xe7e9db";
};
}; };
}; };
}; };
} }