all repos — nix-packages @ 823c1d8de309758ed51bd00109fe7e3e57fd4729

My personal collection of packages for nix

fork files flake module for better compatibility

Alin
commit

823c1d8de309758ed51bd00109fe7e3e57fd4729

parent

d9d25ee82721e91b89706a0c8e9462214b46a93a

2 files changed, 11 insertions(+), 8 deletions(-)

changed files
M flake.lockflake.lock
@@ -11,11 +11,11 @@ "systems": "systems",
"treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1778677964, - "narHash": "sha256-5CBChRuRALkalrd3bOTZnOETDp0bS1VvYIVnLI7VHgc=", + "lastModified": 1779757996, + "narHash": "sha256-liOvTj9cegOqBLP7DGpa+grSUapUJtLX4xwhcoXiy/0=", "owner": "mightyiam", "repo": "files", - "rev": "79173d7b566bd504c9cb8db409991335765e6700", + "rev": "9e069ca826ee1a45e1a9f4f45035fbd23ebcec2f", "type": "github" }, "original": {
@@ -235,11 +235,11 @@ }
}, "nixpkgs_3": { "locked": { - "lastModified": 1779414690, - "narHash": "sha256-gOTcX/9MZVMUE0Xvb4IEcv+0TQJkZFNEnL757ljU360=", + "lastModified": 1779877693, + "narHash": "sha256-NOF9NAREhxr50bbBfVcVOq+ArCMSoe8dP79Pk2uyARk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6dedf69f94d03cbe7bdde106f2d4c23ae2a853bf", + "rev": "4100e830e085863741bc69b156ec4ccd53ab5be0", "type": "github" }, "original": {
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 ];