
User Accounts: ✅ geir - Primary user (development, desktop, multimedia) ✅ sma - Admin user (Diziet Sma, system administration) ✅ common.nix - Shared user settings and security Key Features: 🔧 Culture character naming (sma = Diziet Sma, SC agent) 🔒 Security-focused admin account (SSH keys only, passwordless sudo) 🛠️ Development-focused primary user (containers, virtualization, creative tools) 📦 Modern CLI tools and shell enhancements 🎯 Role-based package selection and group memberships Security Model: - SSH key authentication for admin users - Separate admin and daily-use accounts - Principle of least privilege - No root login allowed Integration: - Container runtime access (podman, incus) - Virtualization management (libvirt, virt-manager) - Development workflow (git, editors, languages) - Desktop environments (GNOME, Cosmic, Sway) Ready for machine-specific deployment across home lab infrastructure.
18 KiB
Home Lab Migration Plan
Current ├── machines/
│ ├── congenital-optimist/ (AMD workstation) │ │ ├── default.nix │ │ ├── hardware-configuration.nix │ │ └── About.org │ ├── sleeper-service/ (Intel Xeon E3-1230 V2 file server) │ ├── default.nix │ ├── hardware-configuration.nix │ └── About.org │ ├── reverse-proxy/ (edge/gateway server) │ │ ├── default.nix │ │ ├── hardware-configuration.nix │ │ └── About.org │ └── grey-area/ (application server) │ ├── default.nix │ ├── hardware-configuration.nix │ └── About.orgessment
CongenitalOptimist Machine
- Current NixOS Version: 25.05
- Hardware: AMD CPU/GPU, ZFS storage (zpool + stuffpool), NFS mounts
- Desktop Environments: GNOME, Cosmic, Sway
- Virtualization: libvirt, Incus, Podman
- Configuration Style: Traditional NixOS (non-flakes)
- Dotfiles Approach: Prefer Emacs org-mode with literate programming (no Home Manager)
Current Structure
Home-lab/
├── Machines/
│ ├── CongenitalOptimist/ (existing - AMD workstation)
│ │ ├── configuration.nix
│ │ ├── hardware-configuration.nix
│ │ └── About.org
│ └── Modules/ (existing modular structure)
│ ├── common/
│ │ ├── base.nix (modern CLI tools & aliases)
│ │ └── tty.nix (console styling)
│ └── virtualization/
│ ├── podman.nix
│ ├── libvirt.nix
│ └── incus.nix
└── Users/
└── geir/
└── user.nix (has typo: progtams → programs)
Target Structure (Post-Migration)
Home-lab/
├── flake.nix
├── flake.lock
├── machines/
│ ├── congenital-optimist/ (AMD workstation)
│ │ ├── default.nix
│ │ ├── hardware-configuration.nix
│ │ └── About.org
│ ├── sleeper-service/ (Intel Xeon E3-1230 V2 file server)
│ ├── default.nix
│ ├── hardware-configuration.nix
│ └── About.org
│ ├── reverse-proxy/ (edge/gateway server)
│ │ ├── default.nix
│ │ ├── hardware-configuration.nix
│ │ └── About.org
│ └── grey-area/ (application server)
│ ├── default.nix
│ ├── hardware-configuration.nix
│ └── About.org
├── modules/
│ ├── common/
│ ├── desktop/
│ ├── development/
│ ├── virtualization/
│ ├── services/
│ │ ├── nfs.nix
│ │ ├── samba.nix
│ │ ├── backup.nix
│ │ └── monitoring.nix
│ └── users/
│ └── common.nix (shared user configurations)
├── users/
│ └── geir/
│ ├── dotfiles/
│ │ ├── README.org (geir's literate config)
│ │ ├── emacs/
│ │ ├── shell/
│ │ └── editors/
│ └── user.nix (geir's system config)
├── overlays/
├── packages/
└── secrets/ (for future secrets management)
Phase 1: Flakes Migration (Priority: High)
1.1 Create Flake Foundation
- Create
flake.nix
at repository root - Define nixpkgs input pinned to NixOS 25.05
- Add nixpkgs-unstable for bleeding edge packages
- Structure outputs for multiple machines (no Home Manager)
- Fix inconsistent naming convention (machine directories to lowercase)
- Update flake outputs to use correct lowercase paths
1.2 Restructure Configuration
- Convert
configuration.nix
to flake-compatible format - Keep
system.stateVersion
as "23.11" (maintains data compatibility) - Update existing module imports for flake structure
- Integrate existing user configuration properly
- Fix nerd-fonts syntax for 25.05 compatibility
- Fix hostname typo (congenial-optimist → congenital-optimist)
1.3 Consolidate User Configuration
- Fix typo in
users/geir/user.nix
(progtams → programs) - Already correct - Merge duplicate user packages between main config and user module
- Decide on package location strategy (system vs user level)
- Ensure all existing functionality is preserved
1.4 Configuration Testing & Validation
- Validate flake syntax with
nix flake check
- Test build without switching:
nixos-rebuild build --flake
- Test configuration:
nixos-rebuild test --flake
- Successfully tested modularized configuration with virtualization
1.5 Desktop Environment Modularization ✅ NEW
- Split monolithic
environments.nix
into modular components:common.nix
- Shared desktop configuration (XDG portal, dbus)gnome.nix
- GNOME desktop environment with extensionscosmic.nix
- System76 Cosmic desktop environmentsway.nix
- Sway window manager with Wayland tools
- Update main configuration to use modular desktop imports
- Test modular desktop configuration successfully
1.6 Virtualization Stack ✅ NEW
- Add comprehensive virtualization support:
- Incus - Modern container and VM management (replaces LXD)
- Libvirt/QEMU - Full KVM virtualization with virt-manager
- Podman - Rootless containers with Docker compatibility
- Configure proper user groups (incus-admin, libvirt, podman)
- Enable UEFI/OVMF support for modern VM guests
- Test all virtualization services running successfully
- Create rollback plan and ZFS snapshots
- Switch to flake configuration permanently
1.7 GitOps Foundation & CI/CD Setup ✅ NEW
- Initialize git repository for infrastructure as code
- Create comprehensive
.gitignore
for NixOS/Nix projects - Set up initial commit with current modular configuration
- Plan CI/CD pipeline for configuration validation
- Design branch strategy for infrastructure changes
- Create templates for pull request workflows
- Plan automated testing for configuration changes
- Set up secrets management strategy for CI/CD
- Document GitOps workflow for multi-machine deployments
1.8 Additional Migration Tasks
- Update all documentation files to use consistent naming
- Update flake descriptions and comments for clarity
- Verify all module imports work correctly in new structure
- Modularize congenital-optimist configuration into logical modules
- Clean up any remaining references to old PascalCase paths
- Test that existing aliases and CLI tools still work
- Verify desktop environments (GNOME, Cosmic, Sway) all function
- Test virtualization stack (podman, libvirt, incus) functionality
- Validate ZFS and storage configuration compatibility
- Generate and commit flake.lock file
- Create backup of current working configuration before final switch
Phase 2: Configuration Cleanup & Organization
2.1 Optimize Current Modular Structure
- Review and optimize existing
common/base.nix
tools - Enhance
common/tty.nix
console configuration - Validate virtualization modules are complete
- Create desktop environment modules (separate GNOME, Cosmic, Sway)
- Separate development tools into dedicated module
2.2 Target Directory Structure
Home-lab/
├── flake.nix
├── flake.lock
├── machines/
│ ├── CongenitalOptimist/ (AMD workstation)
│ │ ├── default.nix (main machine config)
│ │ ├── hardware-configuration.nix
│ │ └── About.org
│ └── SleeperService/ (Intel Xeon file server)
│ ├── default.nix (file server config)
│ ├── hardware-configuration.nix
│ └── About.org
├── modules/
│ ├── common/
│ │ ├── base.nix (existing modern CLI tools)
│ │ ├── tty.nix (existing console config)
│ │ └── nix.nix (flakes + experimental features)
│ ├── desktop/
│ │ ├── gnome.nix
│ │ ├── cosmic.nix
│ │ └── sway.nix
│ ├── development/
│ │ ├── editors.nix (emacs, neovim, vscode, etc.)
│ │ ├── languages.nix (rust, python, LSPs)
│ │ └── tools.nix
│ ├── virtualization/ (existing)
│ │ ├── podman.nix
│ │ ├── libvirt.nix
│ │ └── incus.nix
│ ├── services/ (for SleeperService + grey-area)
│ │ ├── nfs.nix (network file sharing)
│ │ ├── samba.nix (windows compatibility)
│ │ ├── backup.nix (automated backups)
│ │ ├── monitoring.nix (system monitoring)
│ │ ├── storage.nix (ZFS/RAID management)
│ │ ├── reverse-proxy.nix (nginx/traefik configuration)
│ │ ├── forgejo.nix (git hosting and CI/CD)
│ │ ├── media.nix (jellyfin configuration)
│ │ └── applications.nix (containerized services)
│ └── users/
│ └── common.nix (shared user configurations)
├── users/
│ └── geir/
│ ├── dotfiles/
│ │ ├── README.org (main literate config)
│ │ ├── emacs/
│ │ ├── shell/
│ │ └── editors/
│ └── user.nix (consolidated user config)
├── overlays/
├── packages/
└── secrets/ (for future secrets management)
Phase 3: System Upgrade & Validation
3.1 Pre-upgrade Preparation
- Backup current system configuration
- Document current package versions
- Create ZFS snapshots of all datasets
- Test flake build without switching
- Verify all existing modules work in flake context
3.2 Upgrade Execution
- Switch to flake-based configuration
- Upgrade to NixOS 25.05
- Validate all services start correctly
- Test desktop environments functionality
- Verify virtualization stack
- Check user environment and packages
3.3 Post-upgrade Validation
- Verify all applications launch
- Test development tools (editors, LSPs, compilers)
- Validate container and VM functionality
- Check ZFS and NFS mount operations
- Verify shell environment and modern CLI tools work
- Test console theming and TTY setup
Phase 4: Literate Dotfiles Setup
4.1 Per-User Org-mode Infrastructure
- Create per-user dotfiles directories (
users/geir/dotfiles/
) - Create comprehensive
users/geir/dotfiles/README.org
with auto-tangling - Set up Emacs configuration for literate programming workflow
- Configure automatic tangling on save
- Create modular sections for different tool configurations
- Plan for additional users (admin, service accounts, etc.)
4.2 Configuration Domains
- Shell configuration (zsh, starship, aliases)
- Editor configurations (emacs, neovim, vscode)
- Development tools and environments
- System-specific tweaks and preferences
- Git configuration and development workflow
4.3 Integration with NixOS
- Link org-mode generated configs with NixOS modules where appropriate
- Document the relationship between system-level and user-level configs
- Create per-user configuration templates for common patterns
- Plan user-specific configurations vs shared configurations
- Consider user isolation and security implications
Phase 5: Home Lab Expansion Planning
5.1 Infrastructure Additions
Naming Convention
-
Machine Names: UpperCase (e.g.,
CongenitalOptimist
,SleeperService
) -
Folder Names: UpperCase matching machine names (e.g.,
CongenitalOptimist/
,SleeperService/
) -
Flake Outputs: lowercase-with-hyphens (e.g.,
nixosConfigurations.congenital-optimist
) -
Hostnames: lowercase-with-hyphens (e.g.,
congenital-optimist
,sleeper-service
) -
SleeperService file server (Intel Xeon E3-1230 V2, 16GB RAM):
- NFS server for network storage
- Samba server for Windows compatibility
- Automated backup services
- System monitoring and alerting
- ZFS or software RAID for data redundancy
-
reverse-proxy edge server:
- Nginx/Traefik reverse proxy
- SSL/TLS termination with Let's Encrypt
- External access gateway and load balancing
- Security protection (Fail2ban, rate limiting)
- Minimal attack surface, headless operation
-
grey-area application server (Culture GCU - versatile, multi-purpose):
- Primary: Forgejo Git hosting (repositories, CI/CD, project management)
- Secondary: Jellyfin media server, Nextcloud file sync
- Monitoring: Grafana visualization, Prometheus metrics
- Infrastructure: Container-focused (Podman), PostgreSQL database
- Integration: Central Git hosting for all home lab projects
-
Plan for additional users across machines:
- geir - Primary user (development, desktop, daily use)
- sma - Admin user (Diziet Sma, system administration, security oversight)
- Service accounts for automation (forgejo-admin, backup-agent)
- Guest accounts for temporary access
- Culture character naming convention established
-
Network infrastructure planning
-
Consider hardware requirements for future expansion
5.2 Services Architecture
- Centralized configuration management
- Per-user secrets management (agenix/sops-nix)
- User-specific service configurations
- Monitoring and logging (Prometheus, Grafana)
- Backup strategy across machines and users
- Container orchestration planning
5.3 Security & Networking
- VPN configuration (Tailscale expansion)
- Firewall rules standardization
- SSH key management
- Certificate management (Let's Encrypt)
Phase 6: Advanced Features
6.1 Development Workflow
- Devshells for different projects
- Cachix setup for faster builds
- CI/CD integration
- Literate dotfiles with org-mode tangling automation
6.2 Automation & Maintenance
- Automated system updates
- Configuration validation tests
- Deployment automation
- Monitoring and alerting
Timeline Estimates
- Phase 1: 1-2 weeks (flakes migration)
- Phase 2: 1 week (cleanup and organization)
- Phase 3: 2-3 days (upgrade and validation)
- Phase 4: 1 week (literate dotfiles setup)
- Phase 5: 2-4 weeks (expansion planning and implementation)
- Phase 6: Ongoing (advanced features as needed)
Risk Mitigation
Critical Risks
- Boot failure after upgrade: ZFS snapshots for quick rollback
- Desktop environment issues: Keep multiple DEs as fallback
- Virtualization breakage: Document current VM configurations
- Data loss: Multiple backup layers (ZFS, external)
- User environment regression: Backup existing dotfiles
Rollback Strategy
- ZFS snapshot rollback capability
- Keep old configuration.nix as reference
- Maintain emergency boot media
- Document manual recovery procedures
- Preserve current user configuration during migration
Success Criteria
- System boots reliably with flake configuration
- All current functionality preserved
- NixOS 25.05 running stable
- Configuration is modular and maintainable
- User environment fully functional with all packages
- Modern CLI tools and aliases working
- Console theming preserved
- Virtualization stack operational
- Literate dotfiles workflow established
- Ready for multi-machine expansion
- Development workflow improved
- Documentation complete for future reference
Infrastructure Notes
CongenitalOptimist (AMD Workstation)
- Already has excellent modular structure
- Modern CLI tools (eza, bat, ripgrep, etc.) already configured in base.nix
- Console theming with Joker palette already implemented
- User configuration needs cleanup (fix typo, consolidate packages)
- ZFS configuration is solid and shouldn't need changes
- Keep Tailscale configuration as network foundation
- The AMD GPU setup should carry over cleanly to 25.05
- Consider renaming hostname from "work" to "congenital-optimist" for consistency
SleeperService (Intel Xeon File Server)
- Intel Xeon E3-1230 V2 @ 3.70GHz (4 cores, 8 threads)
- 16GB RAM - adequate for file server operations
- Perfect for reliable, background file serving tasks
- Culture name fits: "massive GSV with reputation for taking unusual tasks"
- Will handle NFS mounts currently served by external "files" server
- Plan for ZFS or software RAID for data redundancy
- Headless operation - no desktop environments needed
- SSH-only access with robust monitoring
reverse-proxy (Edge Server)
- Lightweight hardware requirements (can be modest specs)
- Primary role: SSL/TLS termination and traffic routing
- External-facing server with minimal attack surface
- Nginx or Traefik for reverse proxy functionality
- Let's Encrypt integration for automated certificate management
- Fail2ban and security hardening
- Routes traffic to internal services (grey-area, sleeper-service)
grey-area (Application Server - Culture GCU)
- Hardware: Intel Xeon E5-2670 v3 (24 cores) @ 3.10 GHz, 31.24 GiB RAM
- Primary Mission: Forgejo Git hosting and project management
- Performance: Excellent specs for heavy containerized workloads and CI/CD
- Container-focused architecture using Podman
- PostgreSQL database for Forgejo
- Concurrent multi-service deployment capability
- Secondary services: Jellyfin (with transcoding), Nextcloud, Grafana
- Integration hub for all home lab development projects
- Culture name fits: "versatile ship handling varied, ambiguous tasks"
- Central point for CI/CD pipelines and automation
Home Lab Philosophy
- Emacs org-mode literate programming approach provides better control than Home Manager
- Culture ship names create memorable, characterful infrastructure
- Modular NixOS configuration allows easy machine additions
- Per-user dotfiles structure scales across multiple machines
- Tailscale provides secure network foundation for multi-machine setup