add alejandra formatter

This commit is contained in:
Fabian Montero 2024-08-24 01:55:59 -06:00
parent 93d38992e1
commit 1f69ba4229
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F
29 changed files with 405 additions and 326 deletions

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
static = true;
packages = with pkgs; [

View file

@ -1,11 +1,11 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
static = true;
packages = with pkgs; [
pipenv
(python310.withPackages (packages: with packages; [
setuptools
]))
(python310.withPackages (packages:
with packages; [
setuptools
]))
];
}