No description
Find a file
2025-06-17 17:06:15 -05:00
hosts feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
lib feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
modules/nixos feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
users feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
.gitattributes feat: split flake into multiple hosts and add homelab config 2025-06-06 22:28:42 -05:00
.sops.yaml feat: split flake into multiple hosts and add homelab config 2025-06-06 22:28:42 -05:00
flake.lock feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
flake.nix feat: add new host and start modularizing system configuration 2025-06-16 13:54:38 -05:00
git-agecrypt.toml feat: split flake into multiple hosts and add homelab config 2025-06-06 22:28:42 -05:00
README.md docs: add mermaid diagram 2025-06-17 17:06:15 -05:00

nixos-config

Declarative, reproducible configuration for all my NixOS systems Covers workstation/gaming, laptop, and homelab/server use cases.

Overview

This repository maanges multiple NixOS systems using a shared modular configuration. It's designed to be secure, composable, and automated using modern Nix tooling.

  • Laptop ("neon"): Portable KVM/Swiss-Army Knife
  • Homelab Server ("lithium"): Identity, Backups, Forgejo, Jellyfin
  • Workstation / Gaming ("titanium"): Dev and Gaming /w Steam/Proton
  • Secrets managed via sops-nix
  • Deployable with nixos-rebuild (and soon deploy-rs or nixos-anywhere)
graph TD
    flake["flake.nix"] --> mkSystem["lib/mkSystem"]
    mkSystem --> hosts["hosts/{hostname}/default.nix"]
    mkSystem --> users_default["users/{username}/default.nix"]
    mkSystem -.->|if user home-manager| users_home["users/{username}/home.nix"]
    hosts --> nixosMods@{ shape: docs, label: "modules/nixos/*"}
    users_home --> homeMods@{ shape: docs, label: "modules/home/*"}

How to use this? (Deployment)

With home-manager included as an input to the flake, and pulled into the hosts along with their users, this will automatically apply updates to both the system and user environments.

# This will show what the flake has to offer.
nix flake show

# Build a VM to test config
nixos-rebuild build-vm --flake .#hostname

# Preview and apply changes on a nixOS system
nixos-rebuild dry-run --flake .#hostname
sudo nixos-rebuild switch --flake .#hostname

# Preview and apply changes on a macOS system
darwin-rebuild dry-run --flake .#hostname
darwin-rebuild switch --flake .#hostname

# Generate an Install ISO
nix build .#nixosConfigurations.installIso.config.system.build.images.iso

# Verify the ISO contents
sudo mount -o loop result/iso/nixos-*.iso mnt
ls mnt
umount mnt

Design Goals

  • Reproducibility: All systems can be rebuilt from this repo
  • Modularity: Every services is a reusable module
  • Security: Minimal trust, secrets managed explicitly
  • Composability: Roles + services enable rapid provisioning

Directory Layout / Organization

├── flake.nix  # sets inputs, imports lib functions, wires hosts and users
├── lib        # functions to build flake outputs
├── hosts
│   ├── <hostname>
│   │   ├── configuration.nix  # imports from ../../modules/nixos
│   │   ├── hardware.nix       # host specific hardware configuration
│   │   └── default.nix        # entrypoint for host configuration
├── users
│   ├── <username>
│   │   ├── default.nix  # entrypoint for user configuration
│   │   └── home.nix     # imports from ../../modules/home/
├── modules    # Reusable NixOS and Home-Manager Modules
│   ├── nixos  # host configuration modules
│   └── home   # home-manager modules
├── overlays   # Custom Nixpkgs overlays that modify existing pacakges.
└── pkgs       # Custom Nix packages (not in nixpkgs)

References