home-manager: minor reorder of generated home.nix
It's a bit nicer to put the home options at the top, I think.
This commit is contained in:
parent
f7a37ad0b6
commit
426830a174
|
@ -31,9 +31,6 @@ runCommand "home-manager-install" {
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home.username = "$USER";
|
||||
|
@ -48,6 +45,9 @@ runCommand "home-manager-install" {
|
|||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "21.11";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue