Commit 1f046a95a6aa
Changed files (1)
ops
cloud
ops/cloud/network.nix
@@ -0,0 +1,16 @@
+let
+ sources = import ../../nix;
+ pkgs = sources.pkgs { };
+in
+{
+ network = {
+ inherit pkgs;
+ description = "Cloud network";
+ };
+
+ "kerkouane" = { config, pkgs, lib, ... }: {
+ deployment.targetUser = "root";
+ deployment.targetHost = "kerkouane.vpn";
+ imports = [ ../../systems/hosts/kerkouane.nix ];
+ };
+}