build: init initial nixos config test

This commit is contained in:
Mohammad Rafiq 2025-02-22 10:17:38 +08:00
parent 5d20da5abc
commit 5288417f6f
5 changed files with 196 additions and 0 deletions

17
users/rafiq/home.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
home.username = "rafiq";
home.homeDirectory = "/home/rafiq";
home.stateVersion = "24.11"
programs.home-manager.enable = true;
# Git Configuration
programs.git = {
enable = true;
userName = "Mohammad Rafiq";
userEmail = "mohammadrafiq567@gmail.com";
};
}