From 138de972ac1dc7bc8e4690439d99fbe1aa476c5f Mon Sep 17 00:00:00 2001 From: BalrajSinghGidda Date: Sun, 22 Mar 2026 04:22:09 +0530 Subject: [PATCH] Gruvbox all over #5 --- config/{blerc => .blerc} | 0 config/README.md | 8 +++++--- hosts/nixos-btw/home.nix | 7 ++++--- 3 files changed, 9 insertions(+), 6 deletions(-) rename config/{blerc => .blerc} (100%) diff --git a/config/blerc b/config/.blerc similarity index 100% rename from config/blerc rename to config/.blerc diff --git a/config/README.md b/config/README.md index 3275a54..c36f90f 100644 --- a/config/README.md +++ b/config/README.md @@ -1,6 +1,7 @@ # Application Configurations -This directory contains dotfiles for various applications, managed by Home Manager. +This directory contains dotfiles for various applications, managed by Home +Manager. ## Applications @@ -8,13 +9,14 @@ This directory contains dotfiles for various applications, managed by Home Manag - **rofi/** - Rofi launcher theme - **picom/** - Picom compositor settings - **kitty/** - Kitty terminal emulator configuration -- **.blerc** - ble.sh colorscheme based on gruvbox ## Important Note: Neovim Configuration **Neovim is no longer configured through this directory.** -As of March 2026, Neovim configuration has been migrated to the **nvf** framework: +As of March 2026, Neovim configuration has been migrated to the **nvf** +framework: + - Configuration location: `modules/nixos/nvf.nix` - All plugins, LSP servers, and settings are managed declaratively through NixOS - The previous `config/nvim/` directory with Lua files has been removed diff --git a/hosts/nixos-btw/home.nix b/hosts/nixos-btw/home.nix index a11e09f..6579103 100644 --- a/hosts/nixos-btw/home.nix +++ b/hosts/nixos-btw/home.nix @@ -1,6 +1,8 @@ -{ config, pkgs, ... }: - { + config, + pkgs, + ... +}: { # Import Home Manager modules (apps, git, shell, etc.) imports = [ ../../modules/home-manager @@ -19,5 +21,4 @@ xdg.configFile."rofi".source = ../../config/rofi; xdg.configFile."picom".source = ../../config/picom; xdg.configFile."kitty".source = ../../config/kitty; - xdg.configFile.".blerc".source = ../../config/blerc; }