Merge pull request #106 from xecarlox94/master

adding nix shell development environment
This commit is contained in:
Akilan Selvacoumar
2023-09-27 16:29:16 +01:00
committed by GitHub

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;
}