Rename flake output lib' to lib

This commit is contained in:
SebastianStork 2025-10-17 16:53:54 +02:00
parent e7853f4042
commit b601f42f93
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
3 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@
... ...
}: }:
let let
inherit (self) lib'; lib' = self.lib;
mkHost = mkHost =
hostName: hostName:

View file

@ -1,4 +1,4 @@
{ self, inputs, ... }: { self, inputs, ... }:
{ {
flake.lib' = import "${self}/lib" inputs.nixpkgs.lib; flake.lib = import "${self}/lib" inputs.nixpkgs.lib;
} }

View file

@ -1,7 +1,7 @@
{ self, ... }: { self, ... }:
{ {
flake = { flake = {
nixosModules.default.imports = self.lib'.listNixFilesRecursive "${self}/modules/system"; nixosModules.default.imports = self.lib.listNixFilesRecursive "${self}/modules/system";
homeManagerModules.default.imports = self.lib'.listNixFilesRecursive "${self}/modules/home"; homeManagerModules.default.imports = self.lib.listNixFilesRecursive "${self}/modules/home";
}; };
} }