all repos — nix-packages @ 823c1d8de309758ed51bd00109fe7e3e57fd4729

My personal collection of packages for nix

fork files flake module for better compatibility

Alin
commit

823c1d8de309758ed51bd00109fe7e3e57fd4729

parent

d9d25ee82721e91b89706a0c8e9462214b46a93a

1 file changed, 5 insertions(+), 2 deletions(-)

changed files
M flake.nixflake.nix
@@ -4,7 +4,10 @@
inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; flake-parts.url = "github:hercules-ci/flake-parts"; - files.url = "github:mightyiam/files"; + files = { + url = "github:alinnow/files/fix-pipe"; + flake = false; + }; git-hooks.url = "github:cachix/git-hooks.nix"; };
@@ -14,7 +17,7 @@ flake-parts.lib.mkFlake { inherit inputs; } (
{ ... }: { imports = [ - inputs.files.flakeModules.default + "${inputs.files}/flake-module.nix" inputs.git-hooks.flakeModule ];