mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-29 17:14:58 +08:00
8 lines
279 B
Nix
8 lines
279 B
Nix
{ flake, system, ... }:
|
|
|
|
self: super: {
|
|
fuckport = self.callPackage ./fuckport.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;
|
|
}
|