format using alejandra

This commit is contained in:
Paul-Nicolas Madelaine 2023-09-20 00:27:17 +02:00
parent 6f8aad157b
commit f20726136b

View file

@ -1,13 +1,15 @@
{ {
inputs = { inputs = {
nixpkgs.url = "nixpkgs"; nixpkgs.url = "nixpkgs";
flake-utils.url = "flake-utils"; flake-utils.url = "flake-utils";
}; };
outputs = { self, nixpkgs, flake-utils, }: outputs = {
flake-utils.lib.eachDefaultSystem (system: self,
let nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {inherit system;}; pkgs = import nixpkgs {inherit system;};
python = pkgs.python3.withPackages (ps: python = pkgs.python3.withPackages (ps:
with ps; [ with ps; [
@ -25,5 +27,4 @@
packages.default = website; packages.default = website;
devShells.default = pkgs.mkShell {packages = [python];}; devShells.default = pkgs.mkShell {packages = [python];};
}); });
} }