format using alejandra
This commit is contained in:
parent
6f8aad157b
commit
f20726136b
11
flake.nix
11
flake.nix
|
@ -1,13 +1,15 @@
|
|||
{
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs";
|
||||
flake-utils.url = "flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils, }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
flake-utils,
|
||||
}:
|
||||
flake-utils.lib.eachDefaultSystem (system: let
|
||||
pkgs = import nixpkgs {inherit system;};
|
||||
python = pkgs.python3.withPackages (ps:
|
||||
with ps; [
|
||||
|
@ -25,5 +27,4 @@
|
|||
packages.default = website;
|
||||
devShells.default = pkgs.mkShell {packages = [python];};
|
||||
});
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue