From 0fb6afde775c512c6fa86ddbb6dc88ded3830ca9 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Mon, 19 May 2025 01:35:04 +0800 Subject: [PATCH 1/2] remove ghostty from flake inputs --- flake.nix | 10 ---------- overlays/modifications/default.nix | 1 - overlays/modifications/ghostty.nix | 6 ------ 3 files changed, 17 deletions(-) delete mode 100644 overlays/modifications/ghostty.nix diff --git a/flake.nix b/flake.nix index f669447..e5efeea 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"; diff --git a/overlays/modifications/default.nix b/overlays/modifications/default.nix index 89c02eb..774855b 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -3,7 +3,6 @@ in [ ./niri.nix - ./ghostty.nix ./juicity.nix ./dae.nix ./jujutsu.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; -} From 7fd3ac7b9a540613d68f4c06431f3a03757bdb13 Mon Sep 17 00:00:00 2001 From: ulic-youthlic Date: Mon, 19 May 2025 01:35:04 +0800 Subject: [PATCH 2/2] remove jj from flake inputs --- flake.nix | 10 ---------- overlays/modifications/default.nix | 1 - overlays/modifications/jujutsu.nix | 5 ----- 3 files changed, 16 deletions(-) delete mode 100644 overlays/modifications/jujutsu.nix diff --git a/flake.nix b/flake.nix index e5efeea..d71bf5a 100644 --- a/flake.nix +++ b/flake.nix @@ -140,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 774855b..79e53df 100644 --- a/overlays/modifications/default.nix +++ b/overlays/modifications/default.nix @@ -5,7 +5,6 @@ in ./niri.nix ./juicity.nix ./dae.nix - ./jujutsu.nix ./spotifyx.nix ./radicle-explorer.nix ] 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;}; -}