diff --git a/flake.nix b/flake.nix index f669447..d71bf5a 100644 --- a/flake.nix +++ b/flake.nix @@ -58,16 +58,6 @@ 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"; @@ -150,16 +140,6 @@ utils.follows = "flake-utils"; }; }; - - jj = { - type = "github"; - owner = "jj-vcs"; - repo = "jj"; - inputs = { - nixpkgs.follows = "nixpkgs"; - flake-utils.follows = "flake-utils"; - }; - }; }; outputs = { self, diff --git a/overlays/modifications/default.nix b/overlays/modifications/default.nix index 89c02eb..79e53df 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -3,10 +3,8 @@ in [ ./niri.nix - ./ghostty.nix ./juicity.nix ./dae.nix - ./jujutsu.nix ./spotifyx.nix ./radicle-explorer.nix ] diff --git a/overlays/modifications/ghostty.nix b/overlays/modifications/ghostty.nix deleted file mode 100644 index c0a5615..0000000 --- a/overlays/modifications/ghostty.nix +++ /dev/null @@ -1,6 +0,0 @@ -{inputs, ...}: final: prev: let - inherit (final) stdenv; - inherit (stdenv.hostPlatform) system; -in { - ghostty = inputs.ghostty.packages."${system}".default; -} diff --git a/overlays/modifications/jujutsu.nix b/overlays/modifications/jujutsu.nix deleted file mode 100644 index 69708a2..0000000 --- a/overlays/modifications/jujutsu.nix +++ /dev/null @@ -1,5 +0,0 @@ -{inputs, ...}: final: prev: let - inherit (final.stdenv.hostPlatform) system; -in { - jujutsu = inputs.jj.packages."${system}".jujutsu.overrideAttrs {doCheck = false;}; -}