From 3c4d92cf11dde038ffa68ec683b949cdfecaf750 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 4 Dec 2025 23:15:38 +0100 Subject: [PATCH] fix: add self as input for modules --- flake/modules/home-manager.nix | 1 + flake/modules/nixos.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/flake/modules/home-manager.nix b/flake/modules/home-manager.nix index f305558b..830aaa53 100644 --- a/flake/modules/home-manager.nix +++ b/flake/modules/home-manager.nix @@ -21,6 +21,7 @@ class = "nvf"; specialArgs = { inherit pkgs lib inputs; + inherit (inputs) self; }; modules = import ../../modules/modules.nix {inherit pkgs lib;}; }; diff --git a/flake/modules/nixos.nix b/flake/modules/nixos.nix index 8f95a12a..4024a9e7 100644 --- a/flake/modules/nixos.nix +++ b/flake/modules/nixos.nix @@ -21,6 +21,7 @@ class = "nvf"; specialArgs = { inherit pkgs lib inputs; + inherit (inputs) self; }; modules = import ../../modules/modules.nix {inherit pkgs lib;}; };