16 lines
594 B
Nix
16 lines
594 B
Nix
# users/user/home-manager.nix
|
|
#
|
|
# Shim that forwards to the top-level home.nix via the module-system
|
|
# `imports` mechanism. The user name "user" matches settings.user in
|
|
# settings.nix (a placeholder — a real deployment would edit
|
|
# settings.nix and rename this dir to users/<real-username>/).
|
|
#
|
|
# home.nix expects `settings` as a function arg. mksystem passes it
|
|
# via `extraHmArgs = { inherit settings; }` from flake.nix, which
|
|
# becomes part of home-manager.extraSpecialArgs and reaches home.nix
|
|
# transparently through the imports mechanism.
|
|
{ ... }:
|
|
|
|
{
|
|
imports = [ ../../home.nix ];
|
|
}
|