Initial commit
This commit is contained in:
commit
68fbcfb32e
9 changed files with 361 additions and 0 deletions
17
flake.nix
Normal file
17
flake.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{ self, nixpkgs }:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
package = import ./default.nix pkgs;
|
||||
in
|
||||
{
|
||||
packages.x86_64-linux.default = package;
|
||||
formatter.x86_64-linux = pkgs.nixfmt-rfc-style;
|
||||
devShells.x86_64-linux.default = pkgs.mkShell package.paths;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue