summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/shell.nix b/shell.nix
index 61095bb..5ef2b64 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,16 +1,11 @@
-let
- lock = builtins.fromJSON (builtins.readFile ./flake.lock);
- fetchTree = import ./nix/fetchTree.nix;
- flakeSources = builtins.mapAttrs (_: node: fetchTree node.locked) lock.nodes;
-in
{
- pkgs ? import sources.nixpkgs {
+ pkgs ? import nixpkgs {
inherit system;
config = { };
overlays = [ ];
},
+ nixpkgs ? <nixpkgs>,
system ? builtins.currentSystem,
- sources ? flakeSources,
formatter ? pkgs.nixfmt-rfc-style,
}:
pkgs.mkShellNoCC {