14 lines
284 B
Nix
14 lines
284 B
Nix
{ config, repoLocalPath, ... }:
|
|
{
|
|
home.username = "root";
|
|
home.homeDirectory = "/root";
|
|
home.stateVersion = "24.05";
|
|
|
|
gtk.gtk4.theme = config.gtk.theme;
|
|
|
|
programs.git = {
|
|
enable = true;
|
|
signing.format = "openpgp";
|
|
settings.safe.directory = repoLocalPath;
|
|
};
|
|
}
|