mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
no functor necessary
This commit is contained in:
parent
7facf2e749
commit
f373cc323b
2 changed files with 3 additions and 6 deletions
|
@ -1,11 +1,8 @@
|
||||||
{
|
{
|
||||||
description = "nix begat oizys";
|
description = "nix begat oizys";
|
||||||
|
|
||||||
outputs = inputs @ {self, ...}:
|
outputs = inputs @ {self, ...}:
|
||||||
(import ./lib {
|
(import ./lib {inherit self inputs;}).oizysFlake;
|
||||||
inherit inputs;
|
|
||||||
inherit self;
|
|
||||||
})
|
|
||||||
.oizysFlake {};
|
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
||||||
|
|
|
@ -49,7 +49,7 @@ in rec {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
oizysFlake = _: {
|
oizysFlake = {
|
||||||
nixosModules = nixosModules;
|
nixosModules = nixosModules;
|
||||||
nixosConfigurations = oizysHosts;
|
nixosConfigurations = oizysHosts;
|
||||||
packages = oizysPkg;
|
packages = oizysPkg;
|
||||||
|
|
Loading…
Reference in a new issue