Compare commits
No commits in common. "7fd3ac7b9a540613d68f4c06431f3a03757bdb13" and "c1bf23dae9b8275cfd3bcce40b7062868c5dc7e1" have entirely different histories.
7fd3ac7b9a
...
c1bf23dae9
4 changed files with 33 additions and 0 deletions
20
flake.nix
20
flake.nix
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -3,8 +3,10 @@
|
|||
in
|
||||
[
|
||||
./niri.nix
|
||||
./ghostty.nix
|
||||
./juicity.nix
|
||||
./dae.nix
|
||||
./jujutsu.nix
|
||||
./spotifyx.nix
|
||||
./radicle-explorer.nix
|
||||
]
|
||||
|
|
|
|||
6
overlays/modifications/ghostty.nix
Normal file
6
overlays/modifications/ghostty.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{inputs, ...}: final: prev: let
|
||||
inherit (final) stdenv;
|
||||
inherit (stdenv.hostPlatform) system;
|
||||
in {
|
||||
ghostty = inputs.ghostty.packages."${system}".default;
|
||||
}
|
||||
5
overlays/modifications/jujutsu.nix
Normal file
5
overlays/modifications/jujutsu.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{inputs, ...}: final: prev: let
|
||||
inherit (final.stdenv.hostPlatform) system;
|
||||
in {
|
||||
jujutsu = inputs.jj.packages."${system}".jujutsu.overrideAttrs {doCheck = false;};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue