Skip to content

Commit

Permalink
fix mkHomeConfiguration
Browse files Browse the repository at this point in the history
  • Loading branch information
loganlinn committed Oct 9, 2024
1 parent 6418002 commit 6c6b650
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions flake-module/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,17 @@ let
mkHomeConfiguration =
system: modules:
withSystem system (
ctx@{ config, inputs', ... }:
ctx@{
options,
config,
self',
inputs',
pkgs,
...
}:
inputs.home-manager.lib.homeManagerConfiguration {
inherit (ctx) pkgs lib;
modules = [
../options.nix
# {
# options.my = ctx.options.my;
# config.my = ctx.config.my;
# }
] ++ modules;
inherit pkgs;
modules = [ ../options.nix ] ++ modules;
extraSpecialArgs = mkSpecialArgs ctx;
}
);
Expand Down

0 comments on commit 6c6b650

Please sign in to comment.