aboutsummaryrefslogtreecommitdiff
path: root/modules/home/i3wm/nord-blue/alacritty.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/i3wm/nord-blue/alacritty.nix')
-rw-r--r--modules/home/i3wm/nord-blue/alacritty.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/home/i3wm/nord-blue/alacritty.nix b/modules/home/i3wm/nord-blue/alacritty.nix
deleted file mode 100644
index 0c56ec6..0000000
--- a/modules/home/i3wm/nord-blue/alacritty.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, pkgs, ... }:
-
-{
- programs.alacritty = {
- enable = true;
- settings = {
- font = {
- normal = {
- family = "JetBrainsMono Nerd Font";
- style = "Regular";
- };
- bold = {
- family = "JetBrainsMono Nerd Font";
- style = "Bold";
- };
- italic = {
- family = "JetBrainsMono Nerd Font";
- style = "Italic";
- };
- size = 7.0;
- };
- };
- };
-
- home.packages = with pkgs; [
- nerd-fonts.jetbrains-mono
- ];
-}