2024-09-07 10:35:02 +00:00
|
|
|
{
|
|
|
|
description = "Kubernetes deployments";
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
2024-10-28 15:05:06 +00:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2024-10-28 15:03:01 +00:00
|
|
|
treefmt-nix.url = "github:numtide/treefmt-nix";
|
|
|
|
|
2024-10-30 20:19:13 +00:00
|
|
|
git-hooks = {
|
2024-10-28 15:03:01 +00:00
|
|
|
url = "github:cachix/git-hooks.nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-09-07 10:35:02 +00:00
|
|
|
|
|
|
|
nixhelm = {
|
|
|
|
url = "github:farcaller/nixhelm";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
blog-pim = {
|
|
|
|
# HACK: pinning this to a specific revision, as my automation is broken.
|
|
|
|
url = "git+https://git.kun.is/home/blog-pim?rev=7296f7f5bf5f089a5137036dcbd8058cf3e4a9e5";
|
|
|
|
inputs = {
|
|
|
|
nixpkgs.follows = "nixpkgs";
|
2024-10-28 15:05:06 +00:00
|
|
|
flutils.follows = "flake-utils";
|
2024-09-07 10:35:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
kubenix = {
|
|
|
|
url = "github:pizzapim/kubenix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
dns = {
|
|
|
|
url = "github:kirelagin/dns.nix";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
servers = {
|
2024-09-07 19:59:41 +00:00
|
|
|
url = "git+https://git.kun.is/home/nixos-servers";
|
2024-09-24 21:00:55 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
nixng = {
|
2024-10-02 06:21:36 +00:00
|
|
|
url = "github:nix-community/NixNG";
|
2024-09-24 21:00:55 +00:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2024-09-07 10:35:02 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-10-28 15:05:06 +00:00
|
|
|
outputs = inputs @ {flake-utils, ...}:
|
|
|
|
flake-utils.lib.meld inputs [
|
2024-10-28 15:03:01 +00:00
|
|
|
./kubenix.nix
|
|
|
|
./scripts
|
|
|
|
./globals.nix
|
2024-10-28 15:05:06 +00:00
|
|
|
./formatter.nix
|
2024-10-28 15:08:07 +00:00
|
|
|
./shell.nix
|
2024-10-28 15:03:01 +00:00
|
|
|
];
|
2024-09-07 10:35:02 +00:00
|
|
|
}
|