diff --git a/templates/devenv/.envrc b/templates/devenv/.envrc index cc1e30f..ed1e8be 100644 --- a/templates/devenv/.envrc +++ b/templates/devenv/.envrc @@ -1,3 +1,3 @@ watch_file flake.nix flake.lock -use flake . --no-purel-eval +use flake . --no-pure-eval diff --git a/templates/devenv/flake.nix b/templates/devenv/flake.nix index 183b863..94ab840 100644 --- a/templates/devenv/flake.nix +++ b/templates/devenv/flake.nix @@ -1,8 +1,10 @@ { inputs = { nixpkgs.url = "github:cachix/devenv-nixpkgs/rolling"; - devenv.inputs.nixpkgs.follows = "nixpkgs"; - devenv.url = "github:cachix/devenv"; + devenv = { + url = "github:cachix/devenv"; + inputs.nixpkgs.follows = "nixpkgs"; + }; flake-utils.url = "github:numtide/flake-utils"; treefmt-nix.url = "github:numtide/treefmt-nix";