2023-11-18 18:46:23 +01:00
|
|
|
{ flake, ... }:
|
2023-10-27 23:06:55 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
2023-10-28 11:28:41 +02:00
|
|
|
./configuration.nix
|
2023-10-28 13:02:04 +02:00
|
|
|
|
2023-10-28 13:55:10 +02:00
|
|
|
./networking.nix
|
2024-04-03 21:03:14 +02:00
|
|
|
./wireguard.nix
|
2023-11-05 22:54:09 +01:00
|
|
|
./backups.nix
|
2024-10-30 17:57:33 +01:00
|
|
|
"${flake.inputs.fork}/nixos/modules/services//matrix/matrix-authentication-service.nix"
|
2024-10-16 11:37:10 +02:00
|
|
|
"${flake.inputs.unstable}/nixos/modules/services/web-apps/mastodon.nix"
|
|
|
|
];
|
2024-10-15 23:16:34 +02:00
|
|
|
|
2024-10-16 11:37:10 +02:00
|
|
|
disabledModules = [
|
2024-10-30 17:57:33 +01:00
|
|
|
"services/matrix/matrix-authentication-service.nix "
|
2024-10-16 11:37:10 +02:00
|
|
|
"services/web-apps/mastodon.nix"
|
|
|
|
];
|
2023-10-27 23:06:55 +02:00
|
|
|
}
|