adding nix shell development environment, tested

This commit is contained in:
2023-09-27 16:27:17 +01:00
parent 7ed25ef4b3
commit 29eff7a3af

13
default.nix Normal file
View File

@@ -0,0 +1,13 @@
{ nixpkgs ? import <nixpkgs> { } }:
let
pkgs = [
nixpkgs.go
nixpkgs.tmux
];
in
nixpkgs.stdenv.mkDerivation {
name = "env";
buildInputs = pkgs;
}