nixconfig/systems/ci/cfg.nix

34 lines
508 B
Nix
Raw Normal View History

2024-04-14 07:57:07 +02:00
{
syscfg = {
hostname = "ci";
defaultUser = "ci";
users = [{
username = "ci";
git = {
email = "ci@ci";
username = "CI";
key = "";
};
}];
make = {
gui = true;
cli = true;
virt = true;
power = true;
game = true;
develop = true;
};
net = {
wlp = {
enable = false;
nif = "NA";
};
wg = {
enable = false;
ip4 = "";
ip6 = "";
};
};
};
}