feat(incinerator): initial configuration

This commit is contained in:
514fpv 2024-01-05 08:41:30 +08:00
parent 9d4e333545
commit 8335ac6f96
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -0,0 +1,18 @@
{ modulesPath, ... }: {
faucet = {
id = "bc8036643fc24f04ab150ff6a38dcce7";
auth.openssh.enable = true;
libvirt.enable = false;
io.bluetooth = false;
io.audio = false;
fs.type = "btrfs";
fs.store = "534f985d-0540-49eb-a2f6-b30ea16f41ad";
};
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.kernelParams = [ "console=ttyS0,115200n8" ];
}