aboutsummaryrefslogtreecommitdiffstats
path: root/modules/by-name (unfollow)
Commit message (Collapse)Author
2024-12-25refactor(system/services/fail2ban): Migrate to `by-name`Benedikt Peetz
Additionally, I've changed to owner of the `/var/lib/fail2ban` directory to `root:root` as the main `fail2ban` service also runs under `root` and a `fail2ban` user is never created.
2024-12-25refactor(system/services/rust-motd): Migrate to `by-name`Benedikt Peetz
2024-12-25fix(modules/impermanence): Don't always persist `/var/log` and `/var/lib/nixos`Benedikt Peetz
Persisting them, without marking the `/srv` containing fs as `neededForBoot` will result in a kernel panic in the init (because `impermanence` tries to mount these directories and fails as `/srv` is still missing.) Thus, each host, that sets `/srv` to `neededForBoot` should add these directories to `vhack.persist.directories`.
2024-12-25refactor(system/users): Migrate to `by-name`Benedikt Peetz
2024-12-25fix(modules/git-server): Use `vhack.persist` for data-directoriesBenedikt Peetz
This avoids having to create them manually on the server and is, overall just generally a better way to solve this problem.
2024-12-25fix(modules/back): Use correct source-code environment variableBenedikt Peetz
2024-12-24refactor(modules/impermanence): Migrate to by-name while distributing modsBenedikt Peetz
2024-12-24fix(modules/back): Set now needed source code URL environment variableBenedikt Peetz
2024-12-24feat(modules/back): InitBenedikt Peetz
2024-12-24fix(modules/nix-sync/internal): Use correct command grouping syntaxBenedikt Peetz
Commands in parentheses (i.e., `()`) are _subshells_ and `exit`ting from these will not result in an `exit` of the actually _shell_. Thus, we use want simple command grouping and use the correct syntax for that.
2024-12-24fix(modules/disko): Actually honor `cfg.enable`Benedikt Peetz
2024-12-23style(treewide): FormatBenedikt Peetz
2024-12-21fix(modules/disko): Remove deprecated legacy type and migrate to `by-name`Benedikt Peetz
2024-12-20fix(modules/redlib): Change subdomain to `redlib`Benedikt Peetz
The old `libreddit` subdomain still has redirection to avoid this being a breaking change. But keeping the old subdomain is rather weird considering their new name.
2024-12-20refactor(system/services/libreddit): Migrate to `by-name`Benedikt Peetz
This also includes a rename into `redlib` because of upstream changes.
2024-12-20refactor({modules,test}): Migrate to a `by-name` structureBenedikt Peetz