diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-06-12 12:46:14 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-06-12 12:46:14 -0700 |
| commit | 6fff95981bfef5527518fbebac879c71877810ff (patch) | |
| tree | ee12cecc6843ad931806109417e6aed865602ff3 /flake.nix | |
| parent | use a dedicated SSH key for agenix (diff) | |
| download | infra-6fff95981bfef5527518fbebac879c71877810ff.tar.gz | |
pass `self` to the home-manager modules
This is to avoid using relative paths, which is always annoying to get
right.
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -40,6 +40,7 @@ # Output config, or config for NixOS system outputs = { + self, nixpkgs, nixpkgsUnstable, darwin, @@ -88,7 +89,12 @@ ]; mkSystem = import ./nix/lib/mkSystem.nix { - inherit nixpkgs inputs overlays; + inherit + self + nixpkgs + inputs + overlays + ; }; # Create a treefmt-nix evaluation for a system |
