1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-13 10:13:39 +02: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:
Robert Helgesson 2021-11-14 00:01:10 +01:00
parent f7a37ad0b6
commit 426830a174
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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