nixconfig/systems/ci/cfg.nix
soraefir 52423ffdad
Some checks failed
Nix Build / build-nixos (push) Failing after 22s
more WM
2024-04-14 22:24:23 +02:00

35 lines
524 B
Nix

{
syscfg = {
hostname = "ci";
defaultUser = "ci";
users = [{
username = "ci";
wm = "-";
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 = "";
};
};
};
}