17 lines
313 B
Nix
17 lines
313 B
Nix
|
{ 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";
|
||
|
};
|
||
|
}
|