18 lines
372 B
Nix
18 lines
372 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
|
||
|
];
|
||
|
|
||
|
}
|