24 lines
384 B
Nix
24 lines
384 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "jiemusi";
|
|
home.homeDirectory = "/home/jiemusi";
|
|
home.packages = with pkgs; [
|
|
gawk
|
|
cowsay
|
|
tigervnc
|
|
];
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "chickenflyshigh";
|
|
userEmail = "jamesli12345678908@gmail.com";
|
|
};
|
|
|
|
programs.fish = {
|
|
enable = true;
|
|
};
|
|
|
|
home.stateVersion = "23.11";
|
|
programs.home-manager.enable = true;
|
|
}
|