I'm standardizing on bitwarden and rbw for secrets. No need to build out a separate secret management system. The complexity of this was just not worth it for my effectively single-user workflows
22 lines
1.5 KiB
Plaintext
22 lines
1.5 KiB
Plaintext
NixOS Configurations Repository
|
|
================================
|
|
|
|
Overview:
|
|
---------
|
|
This repository hosts modular and reproducible NixOS configurations managed via Nix flakes. It is structured to separate concerns across machine-specific setups, common roles, and custom packages.
|
|
|
|
Directory Structure:
|
|
----------------------
|
|
• packages/ - Custom Nix packages leveraged across various configurations.
|
|
• roles/ - Role-based configurations (e.g., kodi, bluetooth) each with its own module (default.nix) for inclusion in machine setups.
|
|
• machines/ - Machine-specific configurations (e.g., nix-book, z790prors, boxy, wixos) including configuration.nix and hardware-configuration.nix tailored for each hardware.
|
|
• home/ - Home-manager configurations for personal environments and application settings (e.g., home-nix-book.nix, home-z790prors.nix).
|
|
|
|
Design Principles:
|
|
------------------
|
|
• Modularity: Clear separation between roles, machines, and packages allows for flexible and reusable configurations.
|
|
• Declarative & Reproducible: Using Nix flakes guarantees a fully declarative setup that can be effortlessly reproduced across systems.
|
|
• Scalability: The structure is designed to accommodate adding new roles or machines with minimal disruption to existing configurations.
|
|
|
|
This file serves as a concise guide for navigating and understanding the repository from an advanced Nix perspective. Further documentation can be found within the respective directories or individual README files where applicable.
|