mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
17 lines
248 B
Nix
17 lines
248 B
Nix
{ 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";
|
|
};
|
|
};
|
|
|
|
}
|
|
|