nixos-config/home.nix

23 lines
417 B
Nix
Raw Normal View History

2024-07-31 18:23:25 +02:00
{ config, pkgs, pkgs-unstable, ... }:
2024-07-30 22:56:44 +02:00
{
home.username = "mo";
home.homeDirectory = "/home/mo";
home.stateVersion = "24.05";
home.packages = [
];
home.file = {
};
home.sessionVariables = {
};
programs.home-manager.enable = true;
programs.git = {
enable = true;
userName = "Mohamed C.";
userEmail = "mohamed@chrayed.de";
extraConfig = {
init.defaultBranch = "main";
};
};
}