flake update

This commit is contained in:
m3tam3re
2026-05-31 14:12:26 +02:00
parent 831698b766
commit e02a0a29ea
2 changed files with 34 additions and 28 deletions
+8 -2
View File
@@ -30,12 +30,18 @@
in {
# Home-Manager modules — import in nixos-config via:
# imports = [ inputs.m3ta-home.homeManagerModules.default ];
homeManagerModules = import ./modules { inherit inputs; selfPath = self.outPath; };
homeManagerModules = import ./modules {
inherit inputs;
selfPath = self.outPath;
};
# Library functions — use in nixos-config via:
# m3ta-lib = inputs.m3ta-home.lib;
# imports = [ (m3ta-lib.mkHome { ... }) ];
lib = import ./lib {inherit inputs; selfPath = self.outPath;};
lib = import ./lib {
inherit inputs;
selfPath = self.outPath;
};
# Overlays (re-exports from m3ta-nixpkgs)
overlays = inputs.m3ta-nixpkgs.overlays;