nix: use the correct self attribute in the module import

This commit is contained in:
NotAShelf
2024-06-04 18:55:16 +03:00
parent 8d431d792a
commit 341d866854

View File

@@ -82,7 +82,7 @@
flake = {self, ...}: {
homeManagerModules = {
anyrun = import ./nix/hm-module.nix inputs.self;
anyrun = import ./nix/hm-module.nix self;
default = self.homeManagerModules.anyrun;
};
};