mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 00:17:24 +08:00
Remove just override, as it is upstreamed: https://github.com/NixOS/nixpkgs/pull/316156 Remove ncdu, as it is broken: https://github.com/NixOS/nixpkgs/issues/299680
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;
|
|
}
|