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 = {
|
||||
history = 10000;
|
||||
multiplier = 3;
|
||||
|
|
@ -65,10 +61,9 @@
|
|||
};
|
||||
|
||||
|
||||
cursor = {
|
||||
#cursor = {
|
||||
# shape = "Block";
|
||||
# blinking = "Always";
|
||||
# blink_interval = 750;
|
||||
};
|
||||
};
|
||||
#};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@ let
|
|||
in
|
||||
{ options.modules.alacritty = { enable = mkEnableOption "alacritty"; };
|
||||
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; [
|
||||
terminus-nerdfont
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue