diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-19 17:32:27 -0500 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2025-09-19 17:32:27 -0500 |
| commit | e63f4bda23477436bee8b30db73cf8deba4a8a5f (patch) | |
| tree | 5897ba5e2e24c633d3c96b8d43213138118c6737 /modules/desktop/system/programs/alacritty.nix | |
| parent | 6291fefa5741f201f29e2916ca29b93bcc6b7fc8 (diff) | |
| parent | 5d0d346f838a7711fa79eb6edab828107b95a499 (diff) | |
merge changes from main
Diffstat (limited to 'modules/desktop/system/programs/alacritty.nix')
| -rw-r--r-- | modules/desktop/system/programs/alacritty.nix | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/modules/desktop/system/programs/alacritty.nix b/modules/desktop/system/programs/alacritty.nix deleted file mode 100644 index f73a901..0000000 --- a/modules/desktop/system/programs/alacritty.nix +++ /dev/null @@ -1,76 +0,0 @@ -{ - pkgs, - config, - lib, - ... -}: let - cfg = config.collinux.desktop.programs.alacritty; -in - lib.mkIf cfg.enable { - hjem.users."${config.collinux.user.name}" = { - files.".config/alacritty/alacritty.toml" = { - value = { - general = { - import = ["keys.toml" "colors.toml"]; - live_config_reload = true; - }; - font = { - normal.family = "Iosevka Nerd Font"; - size = 12; - }; - }; - generator = (pkgs.formats.toml {}).generate "alacritty.toml"; - }; - - files.".config/alacritty/colors.toml".text = '' - [colors] - draw_bold_text_with_bright_colors = false - - # Default colors - [colors.primary] - background = '#242424' - foreground = '#C5C6C5' - - # Colors the cursor will use if `custom_cursor_colors` is true - [colors.cursor] - text = '#2D3234' - cursor = '#C5C6C5' - - # Normal colors - [colors.normal] - black = '#2D3234' - red = '#FFA500' - green = '#6FEE91' - yellow = '#91EE6F' - blue = '#916FB4' - magenta = '#EE6F91' - cyan = '#6F91B4' - white = '#C5C6C5' - - # Bright colors - [colors.bright] - black = '#566164' - red = '#FFFF60' - green = '#33393B' - yellow = '#4B5356' - blue = '#919494' - magenta = '#D3D4D5' - cyan = '#EE6F6F' - white = '#EEEEEC' - ''; - - files.".config/alacritty/keys.toml".text = '' - [[keyboard.bindings]] - chars = "\u001b[27;5;9~" - key = "Tab" - mods = "Control" - - [[keyboard.bindings]] - chars = "\u001b[27;5;13~" - key = "Enter" - mods = "Control" - ''; - - packages = [pkgs.alacritty]; - }; - } |
