From e6abbd29321e68e5fcbfc95a5219633b6b597763 Mon Sep 17 00:00:00 2001 From: Grigory Shipunov Date: Sat, 4 Mar 2023 23:59:22 +0100 Subject: [PATCH] add follows --- flake.nix | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 8e3aaa6..0a7828a 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,18 @@ { inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + + # naersk and flake utils are not used by this flake directly, but needed + # for the follows in all the other ones. + naersk = { + url = "github:nix-community/naersk"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + utils = { + url = "github:numtide/flake-utils"; + }; + TLMS = { url = "github:tlm-solutions/TLMS.nix"; inputs.nixpkgs.follows = "nixpkgs"; @@ -10,8 +23,6 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; - sops-nix = { url = "github:Mic92/sops-nix"; inputs.nixpkgs.follows = "nixpkgs"; @@ -24,12 +35,20 @@ trekkie = { url = "github:tlm-solutions/trekkie"; - inputs.nixpkgs.follows = "nixpkgs"; + inputs = { + nixpkgs.follows = "nixpkgs"; + naersk.follows = "naersk"; + utils.follows = "utils"; + }; }; datacare = { url = "github:tlm-solutions/datacare"; - inputs.nixpkgs.follows = "nixpkgs"; + inputs = { + nixpkgs.follows = "nixpkgs"; + naersk.follows = "naersk"; + utils.follows = "utils"; + }; }; kindergarten = {