22 lines
425 B
Nix
22 lines
425 B
Nix
{
|
|
lux.dev = {
|
|
homeManager = {
|
|
programs.git = {
|
|
enable = true;
|
|
settings = {
|
|
# TODO: Don't hardcode name and mail
|
|
user.name = "kiri";
|
|
user.email = "mail@jelles.net";
|
|
init.defaultBranch = "main";
|
|
};
|
|
};
|
|
|
|
programs.direnv = {
|
|
enable = true;
|
|
enableZshIntegration = true;
|
|
nix-direnv.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|