mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-04 03:53:35 +08:00
13 lines
611 B
Nix
13 lines
611 B
Nix
{ flake, system, ... }:
|
|
|
|
self: super: {
|
|
fuckport = self.callPackage ./fuckport.nix { };
|
|
twitter-convert = self.callPackage ./twitter-convert { };
|
|
sshuttle-via = self.callPackage ./sshuttle-via.nix { };
|
|
nixci-build-remote = self.callPackage (import ./nixci-build-remote.nix { inherit (flake) inputs; }) { };
|
|
ci = self.callPackage ./ci { };
|
|
nixci = flake.inputs.nixci.packages.${system}.default;
|
|
# 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;
|
|
}
|