flake-parts: fix clan-core reference
All checks were successful
checks / check-links (pull_request) Successful in 13s
checks / checks-impure (pull_request) Successful in 1m50s
checks / checks (pull_request) Successful in 4m5s

This commit is contained in:
Jörg Thalheim 2024-04-04 13:30:42 +02:00
parent 5ffae2070d
commit 28e8af60cf
3 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@
./checks/flake-module.nix
./clanModules/flake-module.nix
./flakeModules/flake-module.nix
./flakeModules/clan.nix
(import ./flakeModules/clan.nix inputs.self)
./devShell.nix
./docs/flake-module
./formatter.nix

View File

@ -1,16 +1,15 @@
clan-core:
{
config,
lib,
flake-parts-lib,
inputs,
self,
...
}:
let
inherit (lib) mkOption types;
buildClan = import ../lib/build-clan {
inherit lib;
clan-core = self;
inherit lib clan-core;
inherit (inputs) nixpkgs;
};
@ -70,4 +69,5 @@ in
;
};
};
_file = __curPos.file;
}

View File

@ -1,7 +1,7 @@
{ config, ... }:
{ self, config, ... }:
{
flake.flakeModules = {
clan = ./clan.nix;
clan = import ./clan.nix self;
default = config.flake.flakeModules.clan;
};
}