basic config

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-11 12:44:00 +02:00
parent a489aa344a
commit dd508cb134
6 changed files with 465 additions and 0 deletions

17
home/him.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... } :
{
home.username = "him";
home.homeDirectory = "/home/him";
home.stateVersion = "26.05";
programs.git.enable = true;
programs.bash = {
enable = true;
shellAliases = {
ll = "ls -lha";
};
};
}