adding terraform and aws
This commit is contained in:
12
flake.nix
12
flake.nix
@@ -15,8 +15,14 @@
|
||||
supportedSystems = [ "x86_64-linux" ];
|
||||
pkgsFor =
|
||||
system:
|
||||
nixpkgs.legacyPackages.${system}.extend (
|
||||
nixpkgs.lib.composeManyExtensions ([ dockerOverlay ])
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in
|
||||
pkgs.extend (
|
||||
pkgs.lib.composeManyExtensions [ dockerOverlay ]
|
||||
# nixpkgs.lib.composeManyExtensions ([ ] ++ builtins.attrValues self.overlays)
|
||||
);
|
||||
eachSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f (pkgsFor system));
|
||||
@@ -101,6 +107,8 @@
|
||||
# pkgs.docker
|
||||
# pkgs.docker-compose
|
||||
pkgs.jq
|
||||
pkgs.terraform
|
||||
pkgs.awscli2
|
||||
];
|
||||
|
||||
config = {
|
||||
|
||||
Reference in New Issue
Block a user