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

TawasalMessenger/foundationdb-flake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install

Global installation for NixOS

/etc/nixos/configuration.nix:

{
# ...
  imports = [
    (import (fetchTarball {
      url = "https://github.com/TawasalMessenger/foundationdb-flake/archive/6.3.11.tar.gz";
      sha256 = "19visg8vabv3fvmw9irh8qclgsssh5nvb5dbzkvwi4dq05ma6jhs";
    })).nixosModule
  ];
  services.foundationdb.enable = true;
# ...
}