nixos-config/home.nix

26 lines
456 B
Nix
Raw Normal View History

{ config, pkgs, pkgs-stable, ... }:
2024-07-30 22:56:44 +02:00
{
2024-07-31 18:45:29 +02:00
imports = [
./user/userpkgs.nix
]
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";
};
};
}