no functor necessary

This commit is contained in:
Daylin Morgan 2024-03-21 11:06:07 -05:00
parent 7facf2e749
commit f373cc323b
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 3 additions and 6 deletions

View file

@ -1,11 +1,8 @@
{
description = "nix begat oizys";
outputs = inputs @ {self, ...}:
(import ./lib {
inherit inputs;
inherit self;
})
.oizysFlake {};
(import ./lib {inherit self inputs;}).oizysFlake;
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

View file

@ -49,7 +49,7 @@ in rec {
}
);
oizysFlake = _: {
oizysFlake = {
nixosModules = nixosModules;
nixosConfigurations = oizysHosts;
packages = oizysPkg;