attic-action/test.nix
seth 5dc7b671af
feat: auto push store paths and add CI (#1)
* feat: add flake devShell

* chore: add prettier

* fix: respect cache input during configure

* feat: auto push paths

* feat: add test workflow

* chore: update index.js

* refactors

* pnpm lock

* more refactors

* remove copying

---------

Co-authored-by: Ryan Cao <70191398+ryanccn@users.noreply.github.com>
2023-07-19 09:53:49 +08:00

7 lines
149 B
Nix

let
pkgs = import <nixpkgs> { };
time = with builtins; toString currentTime;
in
pkgs.runCommand "${time}-test" { } ''
echo "${time}" > $out
''