add stuff for testing locally

main
Brian Hicks 2019-10-24 06:15:56 -05:00
parent d428dc579d
commit f7f48b9e18
2 changed files with 19 additions and 0 deletions

1
.envrc Normal file
View File

@ -0,0 +1 @@
use nix

18
shell.nix Normal file
View File

@ -0,0 +1,18 @@
{ ... }:
let
sources = import ./nix/sources.nix;
nixpkgs = import sources.nixpkgs { };
niv = import sources.niv { };
in with nixpkgs;
stdenv.mkDerivation {
name = "dotfiles";
buildInputs = [
## meta-information for managing dotfiles
niv.niv
## sample projects
# elm
elmPackages.elm
elmPackages.elm-format
];
}