{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    sops-nix.url = "github:Mic92/sops-nix";
    disko = {
      url = "github:nix-community/disko";
      inputs.nixpkgs.follows = "nixpkgs";
    };
    facter = {
      url = "github:nix-community/nixos-facter-modules";
      inputs.nixpkgs.follows = "nixpkgs";
    };
  };

  outputs = inputs: {
    nixosConfigurations.raid1base = import ./setup { inherit inputs; };
    colmena = {
      meta = {
        nixpkgs = import inputs.nixpkgs {
          system = "x86_64-linux";
          overlays = [ ];
        };
      };

      git-system =
        {
          name,
          nodes,
          pkgs,
          ...
        }:
        {
          deployment = {
            targetHost = "188.40.66.217";
            targetPort = 22;
            targetUser = "root";
          };
          imports = [
            # ./git_system.nix
            inputs.disko.nixosModules.disko

            ./git_system.nix

            ./setup/disk_conf.nix
            ./setup/mini_conf.nix
            {
              networking.hostId = "0a7337de";
              boot.loader.grub.zfsSupport = true;
            }
          ];
        };
      # runner-system =
      #   {
      #     name,
      #     nodes,
      #     pkgs,
      #     ...
      #   }:
      #   {
      #     imports = [ ./runner_system.nix ];
      #   };
      # dev-system =
      #   {
      #     name,
      #     nodes,
      #     pkgs,
      #     ...
      #   }:
      #   {
      #     imports = [
      #       ./dev_system.nix
      #       inputs.sops-nix.nixosModules.sops
      #     ];
      #   };
    };
  };
}