/ users / vincent / containers / default.nix
default.nix
 1  { pkgs, ... }:
 2  
 3  {
 4    imports = [
 5      ./gcloud.nix
 6    ];
 7  
 8    home.packages = with pkgs; [
 9      skopeo
10      my.manifest-tool
11      # nerdctl
12      # act
13      oras
14      dagger
15    ];
16  }