first commit
This commit is contained in:
14
flake.nix
Normal file
14
flake.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
description = "my project description";
|
||||
|
||||
inputs.flake-utils.url = "github:numtide/flake-utils";
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem
|
||||
(system:
|
||||
let pkgs = nixpkgs.legacyPackages.${system}; in
|
||||
{
|
||||
devShells.default = import ./shell.nix { inherit pkgs; };
|
||||
}
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user