commit | 31fbc233b5ef5ee7820e990272fbbc6c3ad41806 | [log] [tgz] |
---|---|---|
author | Skyler Grey <sky@a.starrysky.fyi> | Thu Aug 22 16:34:53 2024 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Thu Aug 22 22:48:43 2024 +0000 |
tree | 2bbc4effb1ace171acee34dede9f3e042d2d3027 | |
parent | 13068955876c78087fa09d0eaa6442a2333cb1f0 [diff] |
feat(teal): Permit zulu access to Zanderp25:3000 The headscale zone "zulu" is managed by Zanderp25, who has requested the ability to set up a reverse proxy from tangerine to development websites. Change-Id: I7a79ef4f41be7828c765b92f3d27c2c11ad9faf4 Reviewed-on: https://git.clicks.codes/c/Infra/NixFiles/+/818 Tested-by: Zanderp25 <zanderp25@clicks.codes> Reviewed-by: Zanderp25 <zanderp25@clicks.codes>
This repository contains system configuration for Clicks's infrastructure.
Config is written using Snowfall lib. It keeps us organized and has some nice features like namespaces.
Devices are named after colors, areas are named as a letter, with the matching phonetic alphabet word. Areas are generally managed by one member of Clicks, who has full access to all of the servers in that area. If you require help for a specific area you can email admin@clicks.codes
and in the subject line include the area you want help for.
System | Description | Address |
---|---|---|
teal | Primary Host | teal.alpha.clicks.domains |
a1d2 | Build Server | d2.a1.clicks.domains |
Deploys are done with deploy-rs, you'll need to be able to ssh into a machine with its hostname (either by a nifty .ssh/config
rule or tailscale
).
Once you've done that, you'll be able to deploy with
$ deploy .#MACHINE_NAME
If you're importing our modules, even if you don't enable most of them, you'll find it easiest and best to import them all. This is because the nixpkgs module system checks if all given options are defined, even if they aren't enabled in your specific configuration.
The module system doesn't do this with traditional if
statements or lib.optionalAttrs
, only lib.mkIf
, so we've made sure to use lib.optionalAttrs
for anything that depends on things not in this list:
nixpkgs
We expect the majority of you will already have all of these imported. We use and test against stateVersion = "24.05"
, and while we expect these modules to generally work with earlier or later stateVersion
s, please be aware that this could cause unexpcted effects
We may also depend on:
lib.nixosSystem
(lib
, pkgs
, etc.) being passed into our moduleslib
being extended such that lib.clicks
is equal to the lib
exported from our flakeWe expect the lib
extension to be a minor change, and providing standard arguments to modules to already be the case.
This means that, provided you don't enable any options, importing the Clicks modules will be safe so long as your flake fulfils all of these factors: we won't break eval and we won't change any of your settings. If you'd like to see how we test that, please check out ./modules.spec.nix
We expect no additions to this list, except a potential future change of adding auxolotl modules to this list when we consider them stable and easily-importable. Additions to this list will always be considered breaking changes.
(n.b. If you're wondering why we didn't use lib.optionalAttrs
everywhere, it's because using it loses us some laziness, making it much easier to make infinite recursions. If we replaced every lib.mkIf
with lib.optionalAttrs
in our own config, for instance, it would no longer evaluate)