mirror of
https://github.com/ryan4yin/nixos-and-flakes-book.git
synced 2024-11-25 01:23:08 +01:00
Group programs.* together
This commit is contained in:
parent
1df6c6ff7a
commit
43cc582dad
@ -33,13 +33,6 @@ According to the official [Home Manager Manual](https://nix-community.github.io/
|
|||||||
"Xft.dpi" = 172;
|
"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.
|
# Packages that should be installed to the user profile.
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# here is some command line tools I use frequently
|
# 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
|
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
|
# starship - an customizable prompt for any shell
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user