teutat3s
2ee4bc5682
https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11-highlights Track nixos-23.11 branch, remove unstable overlays This will update our services to the following versions: nextcloud: 27.1.3 -> 27.1.4 forgejo: 1.20.5-0 -> 1.20.6-0 keycloak: 21.1.2 -> 22.0.5 matrix-synapse: 1.95.1 -> 1.97.0 Internal: postgresql: 14.9 -> 15.5 Flake inputs diff: • Updated input 'home-manager': 'github:nix-community/home-manager/28535c3a34d79071f2ccb68671971ce0c0984d7e' (2023-11-19) → 'github:nix-community/home-manager/aeb2232d7a32530d3448318790534d196bf9427a' (2023-11-24) • Updated input 'nixpkgs': 'github:nixos/nixpkgs/d2332963662edffacfddfad59ff4f709dde80ffe' (2023-11-30) → 'github:nixos/nixpkgs/5de0b32be6e85dc1a9404c75131316e4ffbc634c' (2023-12-01)
35 lines
763 B
Nix
35 lines
763 B
Nix
{ flake, ... }:
|
|
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
|
|
./networking.nix
|
|
./backups.nix
|
|
./apps/nginx.nix
|
|
|
|
./apps/collabora.nix
|
|
./apps/coturn.nix
|
|
./apps/forgejo.nix
|
|
./apps/keycloak.nix
|
|
./apps/mailman.nix
|
|
./apps/mastodon.nix
|
|
./apps/mediawiki.nix
|
|
./apps/nextcloud.nix
|
|
./apps/owncast.nix
|
|
./apps/nginx-mastodon.nix
|
|
./apps/nginx-mastodon-files.nix
|
|
./apps/nginx-website.nix
|
|
./apps/opensearch.nix
|
|
./apps/postgresql.nix
|
|
./apps/searx.nix
|
|
|
|
./apps/matrix/mautrix-telegram.nix
|
|
./apps/matrix/synapse.nix
|
|
./apps/matrix/irc.nix
|
|
./apps/nginx-matrix.nix
|
|
];
|
|
}
|