Minor mods to shell tmeplate

This commit is contained in:
baduhai 2023-07-20 12:01:19 -03:00
parent 5e4fe081d2
commit e262642807

View file

@ -1,5 +1,5 @@
{ {
description = "Template for a devShell"; description = "Flake template for a devShell";
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
@ -9,5 +9,5 @@
outputs = { self, nixpkgs, flake-utils, ... }: outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; }; let pkgs = import nixpkgs { inherit system; };
in with pkgs; { devShells.default = mkShell { packages = [ typst ]; }; }); in with pkgs; { devShells.default = mkShell { packages = [ hello ]; }; });
} }