diff options
author | polwex <polwex@sortug.com> | 2024-09-24 00:35:28 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2024-09-24 00:35:28 +0700 |
commit | 3d933f65cbe50c49d42fe97bd59c5bb15a3d4d09 (patch) | |
tree | f59c9dcb76702dd1270485922dffe6f0d256924b | |
parent | fbc1e58635cdf7356a4c6b43c0b6a0df7578dbfb (diff) |
m
-rw-r--r-- | wrappers/alacritty/alacritty.toml | 5 | ||||
-rw-r--r-- | wrappers/alacritty/default.nix | 13 |
2 files changed, 18 insertions, 0 deletions
diff --git a/wrappers/alacritty/alacritty.toml b/wrappers/alacritty/alacritty.toml new file mode 100644 index 0000000..7cf9566 --- /dev/null +++ b/wrappers/alacritty/alacritty.toml @@ -0,0 +1,5 @@ +[scrolling] +history = 50000 + +[colors.primary] +background="#000000" diff --git a/wrappers/alacritty/default.nix b/wrappers/alacritty/default.nix new file mode 100644 index 0000000..82fcc4a --- /dev/null +++ b/wrappers/alacritty/default.nix @@ -0,0 +1,13 @@ +{ + pkgs, + lib, + ... +}: { + wrappers.alacritty= { + basePackage = pkgs.alacritty; + flags = [ + "--config-file" + ./alacritty.toml + ]; + }; +} |