mio-ops/profiles/jormungandr-stake.nix

18 lines
372 B
Nix
Raw Normal View History

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