commit | 4123759130ad663a3409048bbc93f3c47ae7af35 | [log] [tgz] |
---|---|---|
author | Skyler Grey <sky@a.starrysky.fyi> | Thu Aug 08 22:07:15 2024 +0000 |
committer | Skyler Grey <minion@clicks.codes> | Thu Aug 08 22:25:17 2024 +0000 |
tree | dfd08b367283eeaf17ea5f479fab818e6a9748c2 | |
parent | 7e63dd5daa4dce8cc5ceb5d2f130681f0186834c [diff] |
fix(nginx): Solve missing acmeRoot evaluation fail Previously we read from the wrong property, using our in-processing host rather than the nginx acmeRoot. While, again, this works fine for us, it's possibly an even worse situation than before if you're not using ACME DNS challenges and are instead trying to use HTTP Change-Id: Id4fad368ec74cc8a7e8ee3148a81161f60e8755d Reviewed-on: https://git.clicks.codes/c/Infra/NixFiles/+/815 Tested-by: Skyler Grey <minion@clicks.codes> Reviewed-by: Skyler Grey <minion@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)