forked from pub-solar/infra
teutat3s
c39cf9c0b9
https://github.com/mastodon/mastodon/releases/tag/v4.3.0 https://github.com/NixOS/nixpkgs/pull/337545/files
19 lines
353 B
Nix
19 lines
353 B
Nix
{ flake, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
./configuration.nix
|
|
|
|
./networking.nix
|
|
./wireguard.nix
|
|
./backups.nix
|
|
"${flake.inputs.unstable}/nixos/modules/services/web-apps/mastodon.nix"
|
|
];
|
|
|
|
disabledModules = [
|
|
"services/web-apps/mastodon.nix"
|
|
];
|
|
}
|