Initial commit

This commit is contained in:
Michael Franzl 2024-05-02 17:38:17 +02:00
commit 68fbcfb32e
Signed by: michael
GPG key ID: F2FA572344C60B07
9 changed files with 361 additions and 0 deletions

17
flake.nix Normal file
View 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;
};
}