mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-24 16:58:29 +08:00
Useful to force push in a PR so as to trigger github actions, as with flake-lock-update action created PRs.
13 lines
598 B
Nix
13 lines
598 B
Nix
{ flake, system, ... }:
|
|
|
|
self: super: {
|
|
fuckport = self.callPackage ./fuckport.nix { };
|
|
twitter-convert = self.callPackage ./twitter-convert { };
|
|
sshuttle-via = self.callPackage ./sshuttle-via.nix { };
|
|
om-ci-build-remote = self.callPackage (import ./om-ci-build-remote.nix { inherit (flake) inputs; }) { };
|
|
ci = self.callPackage ./ci { };
|
|
touchpr = self.callPackage ./touchpr { };
|
|
# nix-health = flake.inputs.nix-browser.packages.${system}.nix-health;
|
|
actualism-app = flake.inputs.actualism-app.packages.${system}.default;
|
|
omnix = flake.inputs.omnix.packages.${system}.default;
|
|
}
|