Home Manager: Difference between revisions

m (fix): syntax error
NobbZ (talk | contribs)
Removed options that are not only not needed for HM as system module, but might be harmful when used (wrong)
Line 85: Line 85:


{
{
  # Home Manager needs a bit of information about you and the
  # paths it should manage.
  home.username = "your-username";
  home.homeDirectory = "/home/your-username";
   # This value determines the Home Manager release that your
   # This value determines the Home Manager release that your
   # configuration is compatible with. This helps avoid breakage
   # configuration is compatible with. This helps avoid breakage
Line 99: Line 94:
   # changes in each release.
   # changes in each release.
   home.stateVersion = "24.11";
   home.stateVersion = "24.11";
  # Let Home Manager install and manage itself.
  programs.home-manager.enable = true;
}
}
</syntaxhighlight>
</syntaxhighlight>