2023-06-17 00:30:33 +00:00
|
|
|
# { config, pkgs, ... }:
|
2023-06-16 23:46:10 +00:00
|
|
|
|
2023-06-17 00:30:33 +00:00
|
|
|
# {
|
|
|
|
# # Home Manager needs a bit of information about you and the
|
|
|
|
# # paths it should manage.
|
|
|
|
# home.username = "alex";
|
|
|
|
# home.homeDirectory = "/home/alex";
|
2023-06-16 23:46:10 +00:00
|
|
|
|
2023-06-17 00:30:33 +00:00
|
|
|
# # Packages that should be installed to the user profile.
|
|
|
|
# home.packages = [
|
2023-06-16 23:46:10 +00:00
|
|
|
|
|
|
|
|
2023-06-17 00:30:33 +00:00
|
|
|
# pkgs.htop
|
|
|
|
# pkgs.nixpkgs-fmt
|
|
|
|
# ];
|
2023-06-16 23:46:10 +00:00
|
|
|
|
2023-06-17 00:30:33 +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.
|
|
|
|
# home.stateVersion = "23.05";
|
2023-06-16 23:46:10 +00:00
|
|
|
|
2023-06-17 00:30:33 +00:00
|
|
|
# # Let Home Manager install and manage itself.
|
|
|
|
# programs.home-manager.enable = true;
|
|
|
|
# }
|