add flake

This commit is contained in:
2021-04-11 15:36:00 +02:00
commit 44b1f66657
2 changed files with 79 additions and 0 deletions

20
flake.nix Normal file
View File

@@ -0,0 +1,20 @@
{
description = "job application repo of king kali";
inputs.utils.url = "github:numtide/flake-utils";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-stable";
outputs = { self, nixpkgs, utils }:
utils.lib.eachSystem [ "x86_64-linux" ]
(system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShell = import ./default.nix {
inherit pkgs;
};
}
);
}