Skip to content

Commit

Permalink
feat: using terraform flake as overlay for terraform package from nix…
Browse files Browse the repository at this point in the history
…pkgs unstable
  • Loading branch information
luisnquin committed Nov 3, 2024
1 parent ade7a97 commit 4f17e21
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
79 changes: 79 additions & 0 deletions flake.lock

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

14 changes: 14 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,15 @@
utils.follows = "flake-utils";
};
};
nixpkgs-terraform = {
url = "github:stackbuilders/nixpkgs-terraform";
inputs = {
nixpkgs-1_0.follows = "nixpkgs";
nixpkgs-1_6.follows = "nixpkgs";
nixpkgs-1_9.follows = "nixpkgs";
systems.follows = "systems";
};
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
Expand All @@ -169,6 +178,11 @@
(_self: _super: {
inherit (hyprland.packages.${system}) hyprland xdg-desktop-portal-hyprland;
})
]
++ [
(_self: _super: {
terraform = inputs.nixpkgs-terraform.packages.${system}."1.9";
})
];
config = {
allowBroken = false;
Expand Down

0 comments on commit 4f17e21

Please sign in to comment.