init flake

This commit is contained in:
steveej 2023-03-21 13:38:03 +01:00
parent 3d69036a19
commit 0777ef46aa
2 changed files with 40 additions and 0 deletions

13
flake.nix Normal file
View file

@ -0,0 +1,13 @@
# flake.nix
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
};
outputs = {
nixpkgs,
self,
}: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
};
}