Skip to content

Commit

Permalink
alejandra format
Browse files Browse the repository at this point in the history
  • Loading branch information
WGUNDERWOOD committed Jun 6, 2024
1 parent b7fabea commit 4b02fec
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,20 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
outputs = {
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs { inherit system; };
in
{
system: let
pkgs = import nixpkgs {inherit system;};
in {
packages = {
default = pkgs.callPackage ./default.nix { inherit pkgs; };
default = pkgs.callPackage ./default.nix {inherit pkgs;};
};
devShells = {
default = pkgs.callPackage ./shell.nix { inherit pkgs; };
default = pkgs.callPackage ./shell.nix {inherit pkgs;};
};
}
);
Expand Down

0 comments on commit 4b02fec

Please sign in to comment.