Wie Sie sehen, sehen sie nix! https://docs.hacc.space
 
 
 
 
Go to file
stuebinm e12cc7dbf5 mattermost: 8.1.10 → 9.5.1
This jumps Mattermost ESR Versions (see [1] for their release cycle). The
new version makes use of Go's workspace feature, which unfortunately the
buildGoModule function does not (yet?) support [2], and unfortunately this
breaks the previous build process for mattermost.

Further, the new release also makes use of private modules only included
in the (non-free) enterprise version of mattermost which makes it impossible
to build in the usual way even outside of nixpkgs's build abstractions [3].

Both issues can be solved by using Go 1.22, which has added support for
vendoring when using workspaces, and instructing it to ignore errors with
the -e flag. This requires overriding the go-modules derivation's buildPhase.

Finally, this now also build the commands/mmctl subpackage, which contains
a cli utility to administrate mattermost. This currently has its own nixpkgs
package for no reason i can see at all (it also has a version mismatch
between nixpkgs's mattermost and nixpkgs's mmctl).

[1] https://docs.mattermost.com/upgrade/extended-support-release.html
[2] https://github.com/NixOS/nixpkgs/issues/203039
[3] https://github.com/mattermost/mattermost/issues/26221
2024-02-25 17:22:39 +01:00
common render nftables's ruleset 2024-02-18 13:39:54 +01:00
docs meta: new structure 2024-01-11 23:49:26 +01:00
modules bundle encboot 2024-02-17 00:04:51 +00:00
parsons make all nixos containers ephemeral 2024-02-22 21:15:41 +01:00
pkgs mattermost: 8.1.10 → 9.5.1 2024-02-25 17:22:39 +01:00
websites websites: better watch scripts 2024-01-12 00:41:15 +01:00
.gitignore add deploy-rs gc roots to .gitignore 2022-11-19 15:18:32 +01:00
.rgignore add a .rgignore 2024-01-11 21:30:22 +01:00
.sops.yaml rotate octycs's ssh key 2023-05-04 00:40:44 +02:00
LICENSE add a LICENSE-file 2022-10-06 19:31:59 +02:00
README.md meta: new structure 2024-01-11 23:49:26 +01:00
flake.lock mattermost: 8.1.10 → 9.5.1 2024-02-25 17:22:39 +01:00
flake.nix mattermost: 8.1.10 → 9.5.1 2024-02-25 17:22:39 +01:00
secrets.yaml restic: move secrets into sops 2024-01-28 15:32:18 +01:00

README.md

hacc nixfiles

Welcome to the hacc nixfiles (haccfiles). This is how we configure (most of) our infrastructure.

General layout

  • flake.nix: Entrypoint & dependencies
  • modules/: home-grown modules for hacc-specific services
  • pkgs/: packages we need which aren't in nixpkgs
  • websites/: static websites hosted by us
  • common/: meta-level config, reusable across machines
  • parsons/: our sole server, its config & the services it runs

Right now, we only have a single host. We might add more again in the future.

Working with this repo

You will need a flake-enabled nix installation, and have your ssh config set up so that ssh parsons will connect to parsons.hacc.space.

Deploying remotely

It's recommended to use deploy_rs:

deploy .#parsons -k [--dry-activate]

Alternatively, using just nixos-rebuild:

nixos-rebuild --flake .#parsons --target-host parsons \
  --use-remote-sudo --use-substitutes [test|switch|dry-activate]

Re-deploying on parsons itself

Simply do:

nixos-rebuild --flake .#parsons [test|switch|dry-activate]

Working on websites

Websites are exposed as flake outputs: if you're working on a website & want to check it in a browser, do e.g.

nix run .#\"muc.hacc.earth\"

to start a local http server (note that some of our websites need a directory to be built in; these use /tmp/hacc-website).

To add a new website, add a new subdirectory to websites; nix will generate a vhost config based on that directory's name. Add a default.nix in your directory describing how to build the website, and give its derivation a watch attribute to make the nix run setup work.

I don't want to build this long dependency / want a cached version!

If it's still available on parsons from a previous deploy, do:

nix copy --from ssh://parsons /nix/store/...

Note: don't just copy the .drv file (which Nix complains about if it can't build something), that's just the description of how to build it! If you don't know the actual outpath, look in the .drv file (should start with Derive([("out","[the path you want]"...)

committing to haccfiles

  • Things on main should always reflect the config that's actually deployed on parsons, except during testing / debugging sessions
  • split up commits, every commit is one atomic change
  • follow the commit format: "place: $change"
    • place: e.g. modules/$module, services/$service ...
    • change: describe your change. Please wrap your lines sensibly (or configure your editor to do this for you)
  • Exception: autogenerated messages (merge commits, reverts, etc)
  • don't overuse merge commits, try to rebase things if possible with reasonable effort