Initial NixOS configuration

This commit is contained in:
Tomas Rivera
2026-02-25 10:40:52 +01:00
commit 38092498aa
11 changed files with 506 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
programs.git = {
enable = true;
# no declarative parameters for git as it would show in a public git repo more info than I would like. Just use the following commands
# git config --global user.name "YourName"
# git config --global user.email "YourEmail"
# git config --global init.defaultBranch main
#cd ~/nixos\
#git add .
#git commit -m "Update NixOS configuration"
#git push origin master
};
}