build: init initial nixos config test
This commit is contained in:
parent
5d20da5abc
commit
5288417f6f
5 changed files with 196 additions and 0 deletions
17
users/rafiq/home.nix
Normal file
17
users/rafiq/home.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue