feat: add Home Manager refactoring plan and initial structure

- Add comprehensive Home Manager refactoring plan document
- Create initial Home Manager directory structure with user configs
- Add modular Emacs configuration for Home Manager integration
- Update system configurations for Home Manager compatibility
- Preserve existing functionality while preparing for migration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Geir Okkenhaug Jerstad 2025-07-07 13:29:04 +02:00
parent f323e3b909
commit ef4b4b7736
39 changed files with 825 additions and 11 deletions

View file

@ -0,0 +1,10 @@
# Shared development environment module
# Contains common development tools and configurations
{ config, lib, pkgs, ... }:
{
# Shared development environment configuration
# Common development tools, language servers, formatters
# Development-specific environment variables
}

View file

@ -0,0 +1,10 @@
# Language-specific development configurations
# Contains language servers, tools, and environment setup
{ config, lib, pkgs, ... }:
{
# Language-specific development tools
# LSP servers, formatters, linters for different languages
# Language-specific environment variables and configurations
}