citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 0be3436647087f82683365b9d8bf18908fc8d6e1
parent 7392e2e792145ab42bf572912a570d100c732701
Author: William Casarin <jb55@jb55.com>
Date:   Wed,  5 May 2021 13:47:54 -0700

nix skel: use mkShell

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mdotfiles/skeletons/nix/default.nix | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/dotfiles/skeletons/nix/default.nix b/dotfiles/skeletons/nix/default.nix @@ -1,6 +1,5 @@ { pkgs ? import <nixpkgs> {} }: with pkgs; -stdenv.mkDerivation { - name = "project"; - nativeBuildInputs = [ ]; +mkShell { + buildInputs = [ ]; }