mio-ops/profiles/jormungandr-stake.nix

18 lines
370 B
Nix
Raw Normal View History

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