From 49be0f208c2591baca1d6a49049b39a56d29ad0f Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 14 Mar 2024 16:44:21 +0100 Subject: [PATCH] Remove nixseparatedebuginfod input It has been integrated in nixpkgs, so is no longer required. Reviewed-by: Aleix Roca Nonell --- flake.nix | 2 -- m/module/debuginfod.nix | 9 --------- 2 files changed, 11 deletions(-) diff --git a/flake.nix b/flake.nix index 6b19cc5..807721a 100644 --- a/flake.nix +++ b/flake.nix @@ -5,8 +5,6 @@ agenix.inputs.nixpkgs.follows = "nixpkgs"; bscpkgs.url = "git+https://git.sr.ht/~rodarima/bscpkgs"; bscpkgs.inputs.nixpkgs.follows = "nixpkgs"; - nixseparatedebuginfod.url = "github:symphorien/nixseparatedebuginfod"; - nixseparatedebuginfod.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { self, nixpkgs, agenix, bscpkgs, ... }: diff --git a/m/module/debuginfod.nix b/m/module/debuginfod.nix index 6d3c135..a7dc05d 100644 --- a/m/module/debuginfod.nix +++ b/m/module/debuginfod.nix @@ -1,12 +1,3 @@ -{ theFlake, ... }: - -let - nixseparatedebuginfod = theFlake.inputs.nixseparatedebuginfod; -in { - imports = [ - nixseparatedebuginfod.nixosModules.default - ]; - services.nixseparatedebuginfod.enable = true; }