mio-ops/profiles/jormungandr-stake.nix

18 lines
370 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
];
}