add attic
This commit is contained in:
parent
47d99094cd
commit
d0f2c66824
1 changed files with 3 additions and 2 deletions
|
@ -2,14 +2,15 @@
|
|||
description = "nix builder for ci";
|
||||
|
||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
|
||||
inputs.attic.url = "github:zhaofengli/attic";
|
||||
|
||||
outputs = { self, nixpkgs }: let
|
||||
outputs = { self, nixpkgs, attic }: let
|
||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
in {
|
||||
packages.x86_64-linux.default = pkgs.dockerTools.buildImage {
|
||||
name = "nix-builder";
|
||||
tag = "latest";
|
||||
copyToRoot = with pkgs; [coreutils cacert nix curl];
|
||||
copyToRoot = with pkgs; [coreutils cacert nix git git-lfs bash] ++ [attic.packages."x86_64-linux".default];
|
||||
|
||||
runAsRoot = ''
|
||||
#!${pkgs.runtimeShell}
|
||||
|
|
Loading…
Reference in a new issue