Files
nixconfig/systems/ci/cfg.nix
2026-05-30 17:48:18 +02:00

25 lines
376 B
Nix

{
syscfg = {
hostname = "ci";
type = "nixos";
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;
};
};
}