Compare commits

..

No commits in common. "7fd3ac7b9a540613d68f4c06431f3a03757bdb13" and "c1bf23dae9b8275cfd3bcce40b7062868c5dc7e1" have entirely different histories.

4 changed files with 33 additions and 0 deletions

View file

@ -58,6 +58,16 @@
repo = "nixos-cosmic";
};
ghostty = {
type = "github";
owner = "ghostty-org";
repo = "ghostty";
inputs = {
nixpkgs-unstable.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
nixos-hardware = {
type = "github";
owner = "NixOS";
@ -140,6 +150,16 @@
utils.follows = "flake-utils";
};
};
jj = {
type = "github";
owner = "jj-vcs";
repo = "jj";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
};
outputs = {
self,

View file

@ -3,8 +3,10 @@
in
[
./niri.nix
./ghostty.nix
./juicity.nix
./dae.nix
./jujutsu.nix
./spotifyx.nix
./radicle-explorer.nix
]

View file

@ -0,0 +1,6 @@
{inputs, ...}: final: prev: let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in {
ghostty = inputs.ghostty.packages."${system}".default;
}

View file

@ -0,0 +1,5 @@
{inputs, ...}: final: prev: let
inherit (final.stdenv.hostPlatform) system;
in {
jujutsu = inputs.jj.packages."${system}".jujutsu.overrideAttrs {doCheck = false;};
}