2024-05-01 22:00:23 +00:00
|
|
|
{ config, ... }:
|
2024-05-01 20:46:28 +00:00
|
|
|
{
|
|
|
|
# Home Manager needs a bit of information about you and the
|
|
|
|
# paths it should manage.
|
|
|
|
home = {
|
2024-05-01 21:40:06 +00:00
|
|
|
# remember we set this in our flake.nix file
|
2024-05-01 22:00:23 +00:00
|
|
|
homeDirectory = "/Users/${config.home.username}";
|
2024-05-01 20:46:28 +00:00
|
|
|
|
|
|
|
# This value determines the Home Manager release that your
|
|
|
|
# configuration is compatible with. This helps avoid breakage
|
|
|
|
# when a new Home Manager release introduces backwards
|
|
|
|
# incompatible changes.
|
|
|
|
#
|
|
|
|
# You can update Home Manager without changing this value. See
|
|
|
|
# the Home Manager release notes for a list of state version
|
|
|
|
# changes in each release.
|
|
|
|
stateVersion = "23.11";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Let Home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|