flake: format

This commit is contained in:
Bryton Hall 2023-06-03 03:11:07 -04:00
parent eb3ec20f46
commit baa1a6c949
16 changed files with 86 additions and 72 deletions

View file

@ -13,19 +13,13 @@
};
};
outputs = {
self,
nixpkgs,
...
} @ inputs:
outputs = inputs @ {self, ...}:
(inputs.flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import inputs.nixpkgs {
overlays = [
self.overlays.default
];
config.allowUnsupportedSystem = true;
inherit system;
overlays = [self.overlays.default];
config.allowUnsupportedSystem = true;
};
inherit (pkgs) lib;