From 341d866854fac950db76c5ded8a8631849dee29d Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Tue, 4 Jun 2024 18:55:16 +0300 Subject: [PATCH] nix: use the correct self attribute in the module import --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6b4bd1e..4b68473 100644 --- a/flake.nix +++ b/flake.nix @@ -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; }; };