nixconfig/systems/ci/home.nix

19 lines
272 B
Nix
Raw Normal View History

2024-04-13 09:32:22 +02:00
{ config, ... }: {
config.homecfg = {
username = "sora";
make = {
gui = true;
cli = true;
game = true;
develop = true;
power = true;
};
git = {
email = "ci@nonet";
username = "CI";
key = "";
};
};
}