13 lines
332 B
Nix
13 lines
332 B
Nix
{ pkgs, config, hostName, lib, ... }:
|
|
{
|
|
stylix.enableReleaseChecks = false;
|
|
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
|