diff --git a/nixops/informis.nix b/nixops/informis.nix index c737e44..d5e9971 100644 --- a/nixops/informis.nix +++ b/nixops/informis.nix @@ -1,9 +1,24 @@ let - nixos-version = "21.05"; - hosts = import ./lib/hosts.nix { inherit nixos-version; }; + pkgs = import { + config = { + allowUnfree = true; + permittedInsecurePackages = [ + "openssh-with-gssapi-8.4p1" + ]; + }; + overlays = [ + (import ../fudo-pkgs/overlay.nix) + ]; + }; + + home-manager-module = import ; - define-host = hosts.host-config; + hostlib = import ./lib/hosts.nix { + inherit pkgs home-manager-module; + }; + + define-host = hostlib.host-config; in { network = {