Compare commits

..

No commits in common. "0757daf786311bfc62d6452e8f52af18f6c19329" and "31b0bb00031e7dc376f7f546d5e02c6304256fc9" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View file

@ -8,15 +8,12 @@ steps:
commands:
- nix develop -c make
- name: check
commands:
- nix flake check
- name: deploy
commands:
- nix run github:ambroisie/nix-config#drone-scp
environment:
SCP_SOURCE: *.pdf
SCP_SOURCE: /drone/src/*.pdf
SCP_STRIP_COMPONENTS: 2 # Make sure the tarball doesn't contain leading path
SCP_RM: true # Make sure only the newly generated files are left
SCP_HOST:
from_secret: ssh_host

View file

@ -7,7 +7,7 @@
};
outputs = { self, nixpkgs, futils } @ inputs:
futils.lib.eachDefaultSystem (system:
futils.lib.eachSystem futils.lib.allSystems (system:
let
inherit (nixpkgs) lib;
pkgs = nixpkgs.legacyPackages.${system};