From 43cc582dad387e4ed0bc398245c6757c6aaeea70 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Wed, 24 Jan 2024 20:05:38 +0100 Subject: [PATCH] Group programs.* together --- docs/nixos-with-flakes/start-using-home-manager.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/nixos-with-flakes/start-using-home-manager.md b/docs/nixos-with-flakes/start-using-home-manager.md index b4eece7..8f650d1 100644 --- a/docs/nixos-with-flakes/start-using-home-manager.md +++ b/docs/nixos-with-flakes/start-using-home-manager.md @@ -33,13 +33,6 @@ According to the official [Home Manager Manual](https://nix-community.github.io/ "Xft.dpi" = 172; }; - # basic configuration of git, please change to your own - programs.git = { - enable = true; - userName = "Ryan Yin"; - userEmail = "xiaoyin_c@qq.com"; - }; - # Packages that should be installed to the user profile. home.packages = with pkgs; [ # here is some command line tools I use frequently @@ -109,6 +102,13 @@ According to the official [Home Manager Manual](https://nix-community.github.io/ usbutils # lsusb ]; + # basic configuration of git, please change to your own + programs.git = { + enable = true; + userName = "Ryan Yin"; + userEmail = "xiaoyin_c@qq.com"; + }; + # starship - an customizable prompt for any shell programs.starship = { enable = true;