29 lines
836 B
Nix
29 lines
836 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;
|
|
};
|
|
};
|
|
}
|