From e262642807459180239872f4d59f92b5efd2b5f1 Mon Sep 17 00:00:00 2001 From: baduhai Date: Thu, 20 Jul 2023 12:01:19 -0300 Subject: [PATCH] Minor mods to shell tmeplate --- shell/flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/flake.nix b/shell/flake.nix index 3c3d969..a093eee 100644 --- a/shell/flake.nix +++ b/shell/flake.nix @@ -1,5 +1,5 @@ { - description = "Template for a devShell"; + description = "Flake template for a devShell"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; @@ -9,5 +9,5 @@ outputs = { self, nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; - in with pkgs; { devShells.default = mkShell { packages = [ typst ]; }; }); + in with pkgs; { devShells.default = mkShell { packages = [ hello ]; }; }); }