2022-01-06 21:14:02 -05:00
|
|
|
{ config, pkgs, username, ... }:
|
|
|
|
{
|
|
|
|
home.username = username;
|
|
|
|
home.homeDirectory = "/home/" + username;
|
|
|
|
|
2022-04-10 16:15:13 -04:00
|
|
|
imports = [ ./shell ./wayland ./spacemacs.nix ];
|
2022-01-06 21:14:02 -05:00
|
|
|
|
|
|
|
xdg.enable = true;
|
|
|
|
xdg.userDirs.enable = true;
|
|
|
|
|
|
|
|
programs.git = {
|
|
|
|
enable = true;
|
|
|
|
userName = "kiana-S";
|
|
|
|
userEmail = "kiana.a.sheibani@gmail.com";
|
2022-01-11 20:52:14 -05:00
|
|
|
|
2022-03-12 20:46:41 -05:00
|
|
|
extraConfig = {
|
|
|
|
credential.helper = "store";
|
|
|
|
git.allowForcePush = true;
|
|
|
|
init.defaultBranch = "main";
|
|
|
|
};
|
2022-01-06 21:14:02 -05:00
|
|
|
};
|
|
|
|
}
|