renamed hello template to shell

This commit is contained in:
rotterdam 2023-04-06 12:30:44 -03:00
parent 741dad4df5
commit 11f49ad0d7
3 changed files with 4 additions and 4 deletions

4
shell/.envrc Normal file
View file

@ -0,0 +1,4 @@
if ! has nix_direnv_version || ! nix_direnv_version 2.2.1; then
source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.2.1/direnvrc" "sha256-zelF0vLbEl5uaqrfIzbgNzJWGmLzCmYAkInj/LNxvKs="
fi
use flake

13
shell/flake.nix Normal file
View file

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