nvf/flake/modules
Ching Pei Yang cdbf0a0df7
home-manager: fix missing inputs.self
some options in nvf module uses inputs.self but it's not exposed in the
inputs we pass to home-manager module:

example flake.nix:

```
{
	inputs = { /* ... */ };
	outputs = {nixpkgs, ...}@inputs: {
		testing = {
			a = inputs.self             # valid
			b = inputs.self.inputs      # valid
			c = inputs.self.inputs.self # does not exist

			# prior to this change, inputs.self.inputs was passed to the hm
			# module, which lacks the self attr
			#
			# This change passes in the "top-level" inputs instead.
		};
	};
}
```
2025-02-16 12:01:14 +01:00
..
home-manager.nix home-manager: fix missing inputs.self 2025-02-16 12:01:14 +01:00
nixos.nix nixos: use attrset for long function args 2025-01-02 04:12:04 +03:00