mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
10 lines
413 B
Nix
10 lines
413 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;
|
|
actualism-app = flake.inputs.actualism-app.packages.${system}.default;
|
|
}
|