-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,13 +33,6 @@ | |
"Xft.dpi" = 172; | ||
}; | ||
# git 相关配置 | ||
programs.git = { | ||
enable = true; | ||
userName = "Ryan Yin"; | ||
userEmail = "[email protected]"; | ||
}; | ||
# 通过 home.packages 安装一些常用的软件 | ||
# 这些软件将仅在当前用户下可用,不会影响系统级别的配置 | ||
# 建议将所有 GUI 软件,以及与 OS 关系不大的 CLI 软件,都通过 home.packages 安装 | ||
|
@@ -109,6 +102,13 @@ | |
usbutils # lsusb | ||
]; | ||
# git 相关配置 | ||
programs.git = { | ||
enable = true; | ||
userName = "Ryan Yin"; | ||
userEmail = "[email protected]"; | ||
}; | ||
# 启用 starship,这是一个漂亮的 shell 提示符 | ||
programs.starship = { | ||
enable = true; | ||
|