add flake.nix

This commit is contained in:
Timothy DeHerrera 2019-12-22 21:19:03 -07:00
parent 1fe4f82762
commit 106a8b2687
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122
2 changed files with 26 additions and 0 deletions

11
flake.lock generated Normal file
View file

@ -0,0 +1,11 @@
{
"inputs": {
"nixpkgs": {
"inputs": {},
"narHash": "sha256-NB+H7zK3BB//zM127FqgbG4iAfY+nS/IOyO+uGWA5Ho=",
"originalUrl": "nixpkgs",
"url": "github:edolstra/nixpkgs/7845bf5f4b3013df1cf036e9c9c3a55a30331db9"
}
},
"version": 3
}

15
flake.nix Normal file
View file

@ -0,0 +1,15 @@
{
description = "Nix User Repository";
epoch = 201909;
outputs = { self, nixpkgs }:
{
overlay = final: prev: {
nur = import ./default.nix {
nurpkgs = nixpkgs;
pkgs = nixpkgs.pkgs;
};
};
};
}