mirror of
https://github.com/nix-community/home-manager
synced 2024-11-30 15:09:46 +01:00
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
1 changed files with 3 additions and 3 deletions
|
@ -31,9 +31,6 @@ runCommand "home-manager-install" {
|
||||||
{ config, pkgs, ... }:
|
{ 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
|
# Home Manager needs a bit of information about you and the
|
||||||
# paths it should manage.
|
# paths it should manage.
|
||||||
home.username = "$USER";
|
home.username = "$USER";
|
||||||
|
@ -48,6 +45,9 @@ runCommand "home-manager-install" {
|
||||||
# the Home Manager release notes for a list of state version
|
# the Home Manager release notes for a list of state version
|
||||||
# changes in each release.
|
# changes in each release.
|
||||||
home.stateVersion = "21.11";
|
home.stateVersion = "21.11";
|
||||||
|
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue