mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
bigly
This commit is contained in:
parent
e1fbe33c50
commit
90f9a2f03b
3 changed files with 69 additions and 71 deletions
|
|
@ -1,8 +1,4 @@
|
||||||
{ pkgs, lib, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
scrolling = {
|
scrolling = {
|
||||||
history = 10000;
|
history = 10000;
|
||||||
multiplier = 3;
|
multiplier = 3;
|
||||||
|
|
@ -65,10 +61,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
cursor = {
|
#cursor = {
|
||||||
# shape = "Block";
|
# shape = "Block";
|
||||||
# blinking = "Always";
|
# blinking = "Always";
|
||||||
# blink_interval = 750;
|
# blink_interval = 750;
|
||||||
};
|
#};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,10 @@ let
|
||||||
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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue