Files
nixos-config/hosts/kabtopci/default.nix
2026-04-26 10:27:50 +02:00

35 lines
857 B
Nix

#
# Kabtopci — CI server configuration
#
{
config,
pkgs,
user,
agenix,
impermanence,
...
}: {
imports =
[
./hardware-configuration.nix
../../modules/server
]
++ (import ../../modules/services/kabtopci);
# ── Server module options ───────────────────────────────────────────────
myServer.virtualisation.enable = true;
myServer.virtualisation.cpu = "amd";
# ── Host-specific settings ──────────────────────────────────────────────
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader = {
grub = {
enable = true;
device = "/dev/vda";
};
timeout = 1;
};
};
}