mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-04-22 16:58:31 +02:00
23 lines
539 B
Nix
23 lines
539 B
Nix
{pkgs, ...}: {
|
|
##################################################################################################################
|
|
#
|
|
# All Ryan's Home Manager Configuration
|
|
#
|
|
##################################################################################################################
|
|
|
|
imports = [
|
|
../../home/core.nix
|
|
|
|
../../home/fcitx5
|
|
../../home/i3
|
|
../../home/programs
|
|
../../home/rofi
|
|
../../home/shell
|
|
];
|
|
|
|
programs.git = {
|
|
userName = "Ryan Yin";
|
|
userEmail = "xiaoyin_c@qq.com";
|
|
};
|
|
}
|