nixconfig/systems/ci/home.nix
soraefir 177c26e41d
Some checks failed
Nix Build / build-nixos (push) Has been cancelled
Eww Overlay
2024-04-13 10:50:02 +02:00

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 = "";
};
};
}