jj-starship

This commit is contained in:
2026-01-20 16:50:44 +00:00
parent 183f0b9fd3
commit 73f8184b05
4 changed files with 90 additions and 20 deletions

View File

@@ -44,9 +44,10 @@
url = "github:dmmulroy/jj-ryu";
flake = false;
};
jj-starship.url = "github:dmmulroy/jj-starship";
};
outputs = inputs @ {flake-parts, ...}:
outputs = inputs @ {flake-parts, jj-starship, ...}:
flake-parts.lib.mkFlake {inherit inputs;} (
let
inherit (inputs.nixpkgs) lib;
@@ -56,7 +57,7 @@
darwinHosts = ["chidi" "jason"];
nixosHosts = ["michael" "tahani"];
overlays = import ./overlays {inherit inputs;};
overlays = import ./overlays {inherit inputs;} ++ [jj-starship.overlays.default];
nixpkgsConfig = hostPlatform: {
nixpkgs = {inherit hostPlatform overlays;};
};