Skip to content

Commit

Permalink
style(lib): adjust Home Manager modules naming
Browse files Browse the repository at this point in the history
  • Loading branch information
panchoh committed Sep 24, 2024
1 parent 763c118 commit 3e198ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/boxen.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ inputs: let
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOK1QiBQzjzVDZoyWwewN8U0B6QRn09dasbcyTI48dWL pancho@ipad"
];
extraModules = [];
extraHMModules = [];
extraHomeModules = [];
};
in
map (overrides: defaults // overrides) [
Expand Down
2 changes: 1 addition & 1 deletion lib/configurations.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ builtins.listToAttrs (
// {
extraSpecialArgs = inputs // {inherit box;};
home = {
imports = [inputs.self.lib.hmModule] ++ box.extraHMModules;
imports = [inputs.self.lib.homeModule] ++ box.extraHomeModules;
};
inherit box;
};
Expand Down
2 changes: 1 addition & 1 deletion modules/lib/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
inputs: {
nixosModule = import ./module.nix inputs "os";

hmModule = import ./module.nix inputs "hm";
homeModule = import ./module.nix inputs "hm";
}

0 comments on commit 3e198ea

Please sign in to comment.