home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

network.nix (326B)


      1 let
      2   sources = import ../../nix;
      3   pkgs = sources.pkgs { };
      4 in
      5 {
      6   network = {
      7     inherit pkgs;
      8     description = "Cloud network";
      9   };
     10 
     11   "kerkouane" = { config, pkgs, lib, ... }: {
     12     deployment.targetUser = "root";
     13     deployment.targetHost = "kerkouane.vpn";
     14     imports = [ ../../systems/hosts/kerkouane.nix ];
     15   };
     16 }