Homer : Fix config path.

This commit is contained in:
Dmitry Voronin 2024-06-23 19:00:44 +03:00
parent c396b5daca
commit e936fa10e0
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
2 changed files with 2 additions and 2 deletions

View file

@ -96,5 +96,5 @@
];
};
in {
text = (pkgs.formats.yaml {}).generate "HomerConfig" config;
file = (pkgs.formats.yaml {}).generate "HomerConfig" config;
}

View file

@ -1,5 +1,5 @@
{ stdenv, pkgs, ... } @args: let
cfg = pkgs.writeText "HomerConfig" (import ./Config.nix args).text;
cfg = (import ./Config.nix args).file;
in stdenv.mkDerivation (finalAttrs: {
pname = "Homer";
version = "24.05.1";