add follows

This commit is contained in:
oxapentane - 2023-03-04 23:59:22 +01:00
parent 5fdb5be070
commit e6abbd2932
Signed by: oxapentane
GPG Key ID: 91FA5E5BF9AA901C
1 changed files with 23 additions and 4 deletions

View File

@ -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 = {