mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-09 09:50:14 +08:00
10 lines
397 B
Nix
10 lines
397 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 = flake.inputs.nixci.packages.${system}.default;
|
|
nix-health = flake.inputs.nix-browser.packages.${system}.nix-health;
|
|
actual = flake.inputs.actual.packages.${system}.default;
|
|
}
|