1
0
mirror of https://github.com/kmein/niveum synced 2026-03-22 04:41:07 +01:00

feat: use pkgs.formats for everything

This commit is contained in:
2021-04-07 09:37:57 +02:00
parent 0f0b5658be
commit 4adf8fea0a
9 changed files with 83 additions and 94 deletions

View File

@@ -66,7 +66,7 @@ let
}
];
configFile = pkgs.writeText "urlwatch.yaml" (builtins.toJSON {
configFile = (pkgs.formats.yaml {}).generate "urlwatch.yaml" {
display = {
error = true;
new = true;
@@ -100,7 +100,7 @@ let
# chat_id = [ "18980945" ];
# };
};
});
};
urlwatch = pkgs.urlwatch.overrideAttrs (attrs: {
patches = [ <niveum/packages/urlwatch-insecure.patch> ];
});