feat: init
This commit is contained in:
commit
8cfede9f57
28 changed files with 2129 additions and 0 deletions
15
hosts/wiki-replica/hardware-configuration.nix
Normal file
15
hosts/wiki-replica/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Replace with output of `nixos-generate-config --show-hardware-config`
|
||||
# after installing on the actual VPS.
|
||||
{ config, lib, modulesPath, ... }:
|
||||
{
|
||||
imports = [
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [
|
||||
"virtio_pci"
|
||||
"virtio_scsi"
|
||||
"ahci"
|
||||
"sd_mod"
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue