19 lines
272 B
Nix
19 lines
272 B
Nix
{ config, ... }: {
|
|
|
|
config.homecfg = {
|
|
username = "sora";
|
|
make = {
|
|
gui = true;
|
|
cli = true;
|
|
game = true;
|
|
develop = true;
|
|
power = true;
|
|
};
|
|
git = {
|
|
email = "ci@nonet";
|
|
username = "CI";
|
|
key = "";
|
|
};
|
|
};
|
|
}
|