nixconfig/systems/ci/cfg.nix

37 lines
573 B
Nix
Raw Normal View History

2024-04-14 07:57:07 +02:00
{
syscfg = {
hostname = "ci";
2024-04-17 08:26:08 +02:00
type = "nixos";
system = "x86_64-linux";
2024-04-14 07:57:07 +02:00
defaultUser = "ci";
users = [{
username = "ci";
2024-04-14 22:24:23 +02:00
wm = "-";
2024-04-14 07:57:07 +02:00
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 = "";
};
};
};
}