All checks were successful
Check meta / check_dns (pull_request) Successful in 21s
Check meta / check_meta (pull_request) Successful in 20s
Check workflows / check_workflows (pull_request) Successful in 30s
Run pre-commit on all files / pre-commit (push) Successful in 52s
Build all the nodes / ap01 (pull_request) Successful in 1m16s
Build all the nodes / bridge01 (pull_request) Successful in 1m59s
Build all the nodes / geo01 (pull_request) Successful in 2m24s
Build all the nodes / geo02 (pull_request) Successful in 2m14s
Build all the nodes / hypervisor01 (pull_request) Successful in 1m55s
Build all the nodes / hypervisor02 (pull_request) Successful in 1m50s
Build all the nodes / netcore02 (pull_request) Successful in 33s
Build all the nodes / hypervisor03 (pull_request) Successful in 1m44s
Build all the nodes / compute01 (pull_request) Successful in 3m25s
Build all the nodes / storage01 (pull_request) Successful in 2m23s
Build all the nodes / tower01 (pull_request) Successful in 1m55s
Build all the nodes / rescue01 (pull_request) Successful in 2m28s
Build all the nodes / testing02 (pull_request) Successful in 2m18s
Build all the nodes / vault01 (pull_request) Successful in 2m8s
Build the shell / build-shell (pull_request) Successful in 58s
Build all the nodes / web01 (pull_request) Successful in 2m30s
Run pre-commit on all files / pre-commit (pull_request) Successful in 50s
Build all the nodes / web02 (pull_request) Successful in 1m43s
Build all the nodes / web03 (pull_request) Successful in 1m46s
33 lines
742 B
Nix
33 lines
742 B
Nix
# SPDX-FileCopyrightText: 2024 Tom Hubrecht <tom.hubrecht@dgnum.eu>
|
||
#
|
||
# SPDX-License-Identifier: EUPL-1.2
|
||
|
||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||
# and may be overwritten by future invocations. Please make changes
|
||
# to /etc/nixos/configuration.nix instead.
|
||
{ modulesPath, sources, ... }:
|
||
|
||
{
|
||
imports = [
|
||
(modulesPath + "/profiles/qemu-guest.nix")
|
||
(sources.disko + "/module.nix")
|
||
./disko.nix
|
||
];
|
||
|
||
boot = {
|
||
initrd = {
|
||
availableKernelModules = [
|
||
"ata_piix"
|
||
"uhci_hcd"
|
||
"ehci_pci"
|
||
"virtio_pci"
|
||
"sr_mod"
|
||
"virtio_blk"
|
||
];
|
||
kernelModules = [ ];
|
||
};
|
||
|
||
kernelModules = [ "kvm-intel" ];
|
||
extraModulePackages = [ ];
|
||
};
|
||
}
|