it’s writeText not writeFile
This commit is contained in:
parent
1d545cbc36
commit
c82c136e94
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, ... }:
|
||||||
let
|
let
|
||||||
matrix-media-repo = pkgs.callPackage ../../packages/matrix/matrix-media-repo.nix { };
|
matrix-media-repo = pkgs.callPackage ../../packages/matrix/matrix-media-repo.nix { };
|
||||||
config = pkgs.writeFile "matrix-media-repo.yaml" (lib.generators.toYAML { } {
|
config = pkgs.writeText "matrix-media-repo.yaml" (lib.generators.toYAML { } {
|
||||||
repo = {
|
repo = {
|
||||||
bindAddress = "127.0.0.1";
|
bindAddress = "127.0.0.1";
|
||||||
port = 8008;
|
port = 8008;
|
||||||
|
|
Loading…
Reference in a new issue