first commit
This commit is contained in:
commit
21737592da
27 changed files with 744 additions and 0 deletions
17
servers/artemisia/hardware-configuration.nix
Normal file
17
servers/artemisia/hardware-configuration.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||
|
||||
boot = {
|
||||
loader.grub.device = "/dev/vda";
|
||||
initrd = {
|
||||
kernelModules = [ "nvme" ];
|
||||
availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi" ];
|
||||
};
|
||||
tmp.cleanOnBoot = true;
|
||||
};
|
||||
|
||||
fileSystems."/" = { device = "/dev/mapper/debian12--vg-root"; fsType = "ext4"; };
|
||||
swapDevices = [ { device = "/dev/dm-1"; } ];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue