diff options
Diffstat (limited to '')
| -rw-r--r-- | flake/devshells.nix (renamed from nix/flake/devshells.nix) | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/nix/flake/devshells.nix b/flake/devshells.nix index 339a8f4..d28c4b3 100644 --- a/nix/flake/devshells.nix +++ b/flake/devshells.nix @@ -1,4 +1,4 @@ -{ inputs, ... }: +{ self, inputs, ... }: { perSystem = { system, pkgs, ... }: @@ -35,8 +35,13 @@ }; pre-commit-check = mkPreCommitHooks ./.; - scripts = import ../../nix/scripts { - inherit pkgs system inputs; + scripts = import "${self}/scripts" { + inherit + pkgs + self + system + inputs + ; }; in { |
