Skip to content

Commit

Permalink
Still not working
Browse files Browse the repository at this point in the history
```
> nix develop
warning: Git tree '/home/dpc/lab/rustshop' is dirty
trace: /nix/store/pvc2z2jz7p6il74z7dx4p1q4fwia43xg-aws-bootstrap
error: attribute 'default' missing

       at /nix/store/yal0ywzgclz9xppspvlhb1gyhygmrcws-source/infra/flake.nix:19:51:

           18|       overlay = self: super: {
           19|         aws-bootstrap = builtins.trace ''${imp}'' imp.default;
             |                                                   ^
           20|       };
(use '--show-trace' to show detailed location information)
```
  • Loading branch information
dpc committed Jun 28, 2022
1 parent 6a31b6f commit 0bfd8e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/flake.nix
Expand Up @@ -14,8 +14,9 @@
outputs = { self, nixpkgs, flake-utils, flake-compat}:
flake-utils.lib.eachDefaultSystem (system:
let
imp = (import ./utils/aws-bootstrap/default.nix);
overlay = self: super: {
aws-bootstrap = ./utils/aws-bootstrap/default.nix;
aws-bootstrap = builtins.trace ''${imp}'' imp.default;
};
pkgs = import nixpkgs {
inherit system;
Expand Down

0 comments on commit 0bfd8e3

Please sign in to comment.