Files
company-nix/README.md
2026-03-18 17:41:10 +01:00

805 B

nix-nodeiwest

Employee and workstation flake for NodeiWest.

Server deployment moved to the sibling repo ../nix-deployment.

This repo now owns:

  • shared Home Manager modules
  • employee shell packages and environment variables
  • workstation-side access to the nodeiwest helper by consuming it from ../nix-deployment

This repo no longer owns:

  • NixOS server host definitions
  • Colmena deployment state
  • Tailscale server bootstrap
  • k3s bootstrap
  • OpenBao server or Kubernetes infra manifests

Helper Consumption

The helper package is re-exported from the deployment repo:

nix run .#nodeiwest-helper -- --help

If you import modules/helpers/home.nix directly, pass the deployment flake as a special arg:

extraSpecialArgs = {
  deployment = inputs.deployment;
};