diff options
author | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-25 17:35:19 +0200 |
---|---|---|
committer | Klaus T. Aehlig <aehlig@linta.de> | 2024-06-25 17:52:47 +0200 |
commit | 628cb0ab06332086a7ea022bcebfb69d95c38068 (patch) | |
tree | 41a06a68e7a1e89f084e899e0a01b7d846958c7f /shell.nix | |
parent | afcdb1184799526f20954e475af990254d772cd4 (diff) | |
download | hello-nix-628cb0ab06332086a7ea022bcebfb69d95c38068.tar.gz |
Import rules instead of hard-coding
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,7 @@ let pkgs = import nixpkgs {}; nix-dependencies = import ./nix-dependencies { nixpkgs = pkgs; } ; + update-deps = import ./nix-import-tools { nixpkgs = pkgs; } ; in pkgs.mkShell rec { @@ -14,6 +15,7 @@ in pkgs.mkShell rec { buildInputs = with pkgs; [ niv + update-deps ]; shellHook = '' |