mio-ops/profiles/jormungandr-stake.nix
2021-11-16 17:53:38 +10:00

18 lines
379 B
Nix

{ 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
];
}