13 lines
294 B
Nix
13 lines
294 B
Nix
|
|
{ pkgs, config, hostName, lib, ... }:
|
||
|
|
{
|
||
|
|
home.username = "root";
|
||
|
|
home.homeDirectory = "/root";
|
||
|
|
home.stateVersion = "24.05";
|
||
|
|
programs = {
|
||
|
|
git = {
|
||
|
|
enable = true;
|
||
|
|
extraConfig.safe.directory = "/home/alisceon/.nixos_config";
|
||
|
|
}; # end git
|
||
|
|
}; # end programs
|
||
|
|
} # end file
|