42 lines
646 B
Nix
42 lines
646 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "rafiq";
|
|
home.homeDirectory = "/home/rafiq";
|
|
|
|
# home.file.".config/" = {
|
|
# source = ./.config;
|
|
# recursive = true;
|
|
# };
|
|
|
|
home.packages = with pkgs; [
|
|
fastfetch
|
|
neovim
|
|
zip
|
|
unzip
|
|
ripgrep
|
|
];
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "Mohammad Rafiq";
|
|
userEmail = "mohammadrafiq567@gmail.com";
|
|
};
|
|
|
|
#TODO add neovim option
|
|
|
|
#TODO add starship
|
|
|
|
programs.bash = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
shellAliases = {
|
|
ll = "ls -la";
|
|
};
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
programs.home-manager.enable = true;
|
|
}
|
|
|
|
|