2019-10-16 04:13:11 +00:00
|
|
|
{ lib, config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
disabledModules = [ "services/networking/jormungandr.nix" ];
|
|
|
|
|
|
|
|
imports = let
|
2021-11-16 04:57:23 +00:00
|
|
|
jormungandrNixSrc = builtins.fetchTarball
|
|
|
|
"https://github.com/input-output-hk/jormungandr-nix/archive/master.tar.gz";
|
|
|
|
in [ (import (jormungandrNixSrc + "/nixos")) ];
|
2019-10-16 04:13:11 +00:00
|
|
|
|
2021-11-16 04:57:23 +00:00
|
|
|
environment.systemPackages = with pkgs;
|
|
|
|
[
|
|
|
|
jq # CLI JSON processor
|
|
|
|
];
|
2019-10-16 04:13:11 +00:00
|
|
|
|
|
|
|
}
|