From 4dbf1b70e55034c9bc346a5d6ef4cbb0ccfbee19 Mon Sep 17 00:00:00 2001 From: George Macon Date: Mon, 23 Sep 2024 20:40:18 -0400 Subject: [PATCH] [home] Remove alacritty --- flake.lock | 17 ----------------- flake.nix | 4 ---- home-manager/home/common.nix | 20 +------------------- 3 files changed, 1 insertion(+), 40 deletions(-) diff --git a/flake.lock b/flake.lock index aadbd37..11a87cb 100644 --- a/flake.lock +++ b/flake.lock @@ -27,22 +27,6 @@ "type": "github" } }, - "alacritty-theme-penumbra": { - "flake": false, - "locked": { - "lastModified": 1663051258, - "narHash": "sha256-jhS4rYiFgKDttrT6vbLfK1UdcnuatkMf8kQEjcUrQII=", - "owner": "pomarec", - "repo": "alacritty-theme-penumbra", - "rev": "1d341cb0b29bb126a3988d34ab0663f6c7e75586", - "type": "github" - }, - "original": { - "owner": "pomarec", - "repo": "alacritty-theme-penumbra", - "type": "github" - } - }, "crane": { "inputs": { "nixpkgs": [ @@ -452,7 +436,6 @@ "root": { "inputs": { "agenix": "agenix", - "alacritty-theme-penumbra": "alacritty-theme-penumbra", "emacs": "emacs", "flake-compat_": "flake-compat_", "flake-parts_": "flake-parts_", diff --git a/flake.nix b/flake.nix index cecdf44..b161e27 100644 --- a/flake.nix +++ b/flake.nix @@ -84,10 +84,6 @@ systems_.url = "github:nix-systems/default"; # Non-flake inputs - alacritty-theme-penumbra = { - url = "github:pomarec/alacritty-theme-penumbra"; - flake = false; - }; penumbra = { url = "github:nealmckee/penumbra"; flake = false; diff --git a/home-manager/home/common.nix b/home-manager/home/common.nix index 886d5aa..4dc2fbc 100644 --- a/home-manager/home/common.nix +++ b/home-manager/home/common.nix @@ -1,4 +1,4 @@ -{ pkgs, inputs, ... }: +{ pkgs, ... }: { home.packages = builtins.attrValues { inherit (pkgs) @@ -35,22 +35,4 @@ smtpserverport = 465; }; }; - - programs.alacritty = { - enable = true; - settings = { - font.normal.family = "Fira Code Nerd Font"; - font.size = 13.0; - draw_bold_text_with_bright_colors = true; - key_bindings = [ - { - key = "N"; - mods = "Shift|Control"; - action = "SpawnNewInstance"; - } - ]; - "import" = [ "${inputs.alacritty-theme-penumbra}/penumbra-light.yml" ]; - }; - }; - }