Skip to content
This repository has been archived by the owner on Jun 5, 2022. It is now read-only.

Latest commit

 

History

History
19 lines (16 loc) · 369 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 369 Bytes

Install

Global installation for NixOS

/etc/nixos/configuration.nix:

{
# ...
  imports = [
    (import (fetchTarball {
      url = "https://github.com/TawasalMessenger/mysql-fb-flake/archive/prod8-202009.1.tar.gz";
      sha256 = "0ff0xn0q9n78wm5g6ymf7j5p78hqy02fb6rsswa0z3rxifianbwr";
    })).nixosModule
  ];
  services.mysql.enable = true;
# ...
}