diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-25 23:14:14 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-25 23:14:14 +0200 |
commit | 93bfe12379855188b43b0bb6fcc70d6717c18a6e (patch) | |
tree | 013f36959933608c97dc6b5db8c402f1581038c2 | |
parent | fix(system/impermanence/mods/mail.nix): fix typo (diff) | |
download | nixos-server-93bfe12379855188b43b0bb6fcc70d6717c18a6e.tar.gz nixos-server-93bfe12379855188b43b0bb6fcc70d6717c18a6e.zip |
style(system/services/mastodon): format with alejandra
-rw-r--r-- | system/services/mastodon/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/system/services/mastodon/default.nix b/system/services/mastodon/default.nix index 34f579a..a721792 100644 --- a/system/services/mastodon/default.nix +++ b/system/services/mastodon/default.nix @@ -1,4 +1,8 @@ -{config, pkgs-unstable, ...}: let +{ + config, + pkgs-unstable, + ... +}: let emailAddress = "mastodon@vhack.eu"; in { services.mastodon = { @@ -6,7 +10,7 @@ in { # Unstable Mastodon package, used if #security updates aren't backported. - #package = pkgs-unstable.mastodon; + #package = pkgs-unstable.mastodon; localDomain = "vhack.eu"; smtp = { |