From c575ff0a3cf45462f39ceacb29b81c46c3b88d95 Mon Sep 17 00:00:00 2001 From: Culis Gaspard Date: Wed, 18 Sep 2024 13:49:32 +0200 Subject: [PATCH] term: Added nix config --- term/alacritty/default.nix | 14 ++++++++++++++ term/default.nix | 7 +++++++ 2 files changed, 21 insertions(+) create mode 100644 term/alacritty/default.nix create mode 100644 term/default.nix diff --git a/term/alacritty/default.nix b/term/alacritty/default.nix new file mode 100644 index 0000000..48b3804 --- /dev/null +++ b/term/alacritty/default.nix @@ -0,0 +1,14 @@ +{ + pkgs, + ... +} : { + home.file = { + ".config/alacritty/alacritty.toml".source = ./alacritty.toml; + }; + + home.packages = [ + pkgs.alacritty + ]; +} + + diff --git a/term/default.nix b/term/default.nix new file mode 100644 index 0000000..38aa702 --- /dev/null +++ b/term/default.nix @@ -0,0 +1,7 @@ +{ + imports = [ + ./alacritty + ]; +} + +