summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--wrappers/alacritty/alacritty.toml5
-rw-r--r--wrappers/alacritty/default.nix13
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
+ ];
+ };
+}