From 4a47c4781ede35452fd536c5d6b12636fe1b7b16 Mon Sep 17 00:00:00 2001 From: C4 Patino Date: Sun, 16 Nov 2025 16:06:35 -0600 Subject: [PATCH] fix: updated devenv template to remove typo --- templates/devenv/.envrc | 2 +- templates/devenv/flake.nix | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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";