Skip to content

Commit

Permalink
chore: Use latest talosctl (#58)
Browse files Browse the repository at this point in the history
Use latest talosctl
  • Loading branch information
nahsi authored Dec 23, 2024
1 parent 04e4d64 commit c33907f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
19 changes: 18 additions & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,20 +1,30 @@
{
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
inputs.unstableNixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.systems.url = "github:nix-systems/default";
inputs.flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};

outputs =
{ nixpkgs, flake-utils, ... }:
{
nixpkgs,
unstableNixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
system = "${system}";
config.allowUnfree = true;
};
unstablePkgs = import unstableNixpkgs {
system = "${system}";
config.allowUnfree = true;
};
in
{
formatter = pkgs.nixfmt-rfc-style;
Expand All @@ -27,7 +37,7 @@
pkgs.just
pkgs.gh

pkgs.talosctl
unstablePkgs.talosctl
pkgs.kubectl
pkgs.kubernetes-helm
pkgs.kustomize
Expand Down

0 comments on commit c33907f

Please sign in to comment.