1
0
Fork 0
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:
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, ... }: { 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