From a20c3cc420d4d244e21e5c12e69759d10e8bbc3a Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Mon, 22 Apr 2024 21:20:29 -0500 Subject: [PATCH] changed around nix flake. --- flake.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 44a5386..735a203 100644 --- a/flake.nix +++ b/flake.nix @@ -11,10 +11,8 @@ nixpkgs, flake-utils, }: - flake-utils.lib.eachDefaultSystem (system: let - pkgs = import nixpkgs {inherit system;}; - in - with pkgs; { + flake-utils.lib.eachDefaultSystem (system: + with import nixpkgs {inherit system;}; { devShells.default = mkShell { buildInputs = [hugo]; };