Add laptop config
This commit is contained in:
parent
5325723d7e
commit
b8e127818a
23 changed files with 32 additions and 9 deletions
|
|
@ -1,48 +0,0 @@
|
|||
{ config, pkgs, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
background_opacity = 0.9;
|
||||
|
||||
# Based on the GNOME Dark theme
|
||||
colors.primary = {
|
||||
foreground = "#d0cfcc";
|
||||
background = "#000000";
|
||||
bright_foreground = "#ffffff";
|
||||
};
|
||||
colors.normal = {
|
||||
black = "#171421";
|
||||
red = "#c01c28";
|
||||
green = "#26a269";
|
||||
yellow = "#a2734c";
|
||||
blue = "#12488b";
|
||||
magenta = "#a347ba";
|
||||
cyan = "#2aa1b3";
|
||||
white = "#d0cfcc";
|
||||
};
|
||||
colors.bright = {
|
||||
black = "#5e5c64";
|
||||
red = "#f66151";
|
||||
green = "#33d17a";
|
||||
yellow = "#e9ad0c";
|
||||
blue = "#2a7bde";
|
||||
magenta = "#c061cb";
|
||||
cyan = "#33c7de";
|
||||
white = "#ffffff";
|
||||
};
|
||||
|
||||
font =
|
||||
let family = "FiraCode Nerd Font Mono";
|
||||
font-style = style: { inherit family style; };
|
||||
in {
|
||||
normal = font-style "Regular";
|
||||
bold = font-style "Bold";
|
||||
italic = font-style "Italic";
|
||||
bold_italic = font-style "Bold Italic";
|
||||
|
||||
size = 11;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue