Add nix shell
This commit is contained in:
parent
54f1588091
commit
c3970dca5b
5 changed files with 272 additions and 218 deletions
17
flake.nix
Normal file
17
flake.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
description = "A very basic flake";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages."x86_64-linux";
|
||||
in
|
||||
{
|
||||
|
||||
devShells."x86_64-linux".default = pkgs.callPackage ./shell.nix { inherit pkgs; };
|
||||
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue