mtg_card_dataminer/.config/nix/env.nix

9 lines
181 B
Nix

{ pkgs }:
let
toEnvFile = attrs: pkgs.writeText "myenvfile.env" (nixpkgs.lib.generators.toKeyValue {} attrs);
in
toEnvFile {
UPDATE_INTERVAL = "12";
PORT = "8080";
}