update flake and fix nixfmt after update

This commit is contained in:
Noah Masur
2024-04-09 17:54:22 -04:00
parent 3c2a971fc4
commit 7d82e18c4d
5 changed files with 107 additions and 87 deletions

View File

@ -9,11 +9,16 @@
"aarch64-linux"
"aarch64-darwin"
];
in {
devShells = forAllSystems (system:
let pkgs = import nixpkgs { inherit system; };
in {
default = pkgs.mkShell { buildInputs = with pkgs; [ nixfmt ]; };
});
in
{
devShells = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
default = pkgs.mkShell { buildInputs = with pkgs; [ nixfmt-rfc-style ]; };
}
);
};
}