nixos-config/common/home-manager/default.nix

20 lines
402 B
Nix
Raw Normal View History

2022-01-06 21:14:02 -05:00
{ config, pkgs, username, ... }:
{
home.username = username;
home.homeDirectory = "/home/" + username;
imports = [ ./shell ./wayland ];
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
extraConfig.credential.helper = "store";
2022-01-11 23:43:52 -05:00
extraConfig.git.allowForcePush = true;
2022-01-06 21:14:02 -05:00
};
}