mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/khuedoan/homelab.git
synced 2026-09-20 08:03:58 +08:00
25 lines
428 B
Nix
25 lines
428 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
|
};
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
supportedSystems = nixpkgs.lib.genAttrs [
|
|
"x86_64-linux"
|
|
];
|
|
in
|
|
{
|
|
devShells = supportedSystems (system: {
|
|
default = with nixpkgs.legacyPackages.${system}; mkShell {
|
|
packages = [
|
|
go
|
|
go-task
|
|
kubectl
|
|
opentofu
|
|
];
|
|
};
|
|
});
|
|
};
|
|
}
|