This commit is contained in:
Bryan Ramos 2024-01-27 15:38:08 -05:00
parent e1fbe33c50
commit 90f9a2f03b
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
3 changed files with 69 additions and 71 deletions

View file

@ -1,74 +1,69 @@
{ pkgs, lib, ... }:
{ {
enable = true; scrolling = {
settings = { history = 10000;
scrolling = { multiplier = 3;
history = 10000; };
multiplier = 3;
window = {
opacity = 0.90;
};
colors = {
primary = {
background = "#000000";
foreground = "#cdd6f4";
}; };
window = { normal = {
opacity = 0.90; black = "#1e2127";
red = "#e06c75";
green = "#98c379";
yellow = "#d19a66";
blue = "#61afef";
magenta = "#c678dd";
cyan = "#56b6c2";
white = "#abb2bf";
}; };
colors = { bright = {
primary = { black = "#5c6370";
background = "#000000"; red = "#e06c75";
foreground = "#cdd6f4"; green = "#98c379";
}; yellow = "#d19a66";
blue = "#61afef";
normal = { magenta = "#c678dd";
black = "#1e2127"; cyan = "#56b6c2";
red = "#e06c75"; white = "#ffffff";
green = "#98c379";
yellow = "#d19a66";
blue = "#61afef";
magenta = "#c678dd";
cyan = "#56b6c2";
white = "#abb2bf";
};
bright = {
black = "#5c6370";
red = "#e06c75";
green = "#98c379";
yellow = "#d19a66";
blue = "#61afef";
magenta = "#c678dd";
cyan = "#56b6c2";
white = "#ffffff";
};
};
font = {
size = 12;
normal = {
family = "Terminus";
style = "Regular";
};
bold = {
family = "Terminus";
style = "Bold";
};
italic = {
family = "Terminus";
style = "Italic";
};
bold_italic = {
family = "Terminus";
style = "Bold Italic";
};
};
cursor = {
# shape = "Block";
# blinking = "Always";
# blink_interval = 750;
}; };
}; };
font = {
size = 12;
normal = {
family = "Terminus";
style = "Regular";
};
bold = {
family = "Terminus";
style = "Bold";
};
italic = {
family = "Terminus";
style = "Italic";
};
bold_italic = {
family = "Terminus";
style = "Bold Italic";
};
};
#cursor = {
# shape = "Block";
# blinking = "Always";
# blink_interval = 750;
#};
} }

View file

@ -1,13 +1,16 @@
{ pkgs, lib, config, ... }: { pkgs, lib, config, ... }:
with lib; with lib;
let let
cfg = config.modules.alacritty; cfg = config.modules.alacritty;
in in
{ options.modules.alacritty = { enable = mkEnableOption "alacritty"; }; { options.modules.alacritty = { enable = mkEnableOption "alacritty"; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
programs.alacritty = import ./config/alacritty.nix { inherit pkgs lib; }; programs.alacritty = {
enable = true;
settings = import ./config/alacritty.nix;
};
home.packages = with pkgs; [ home.packages = with pkgs; [
terminus-nerdfont terminus-nerdfont

View file

@ -1,10 +1,10 @@
{ pkgs, lib, config, ... }: { pkgs, lib, config, ... }:
with lib; with lib;
let let
cfg = config.modules.corn; cfg = config.modules.corn;
in in
{ options.modules.corn = { enable = mkEnableOption "corn"; }; { options.modules.corn = { enable = mkEnableOption "corn"; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = with pkgs; [ home.packages = with pkgs; [