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