infrastructure/nixos/hosts/olympus/bastion/hardware-configuration.nix

26 lines
710 B
Nix
Raw Normal View History

2021-10-13 16:49:41 +02:00
# 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.
2023-05-04 13:06:08 +02:00
{ modulesPath, ... }:
2021-10-13 16:49:41 +02:00
{
2021-10-25 12:50:04 +02:00
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
2023-09-25 11:56:02 +02:00
boot = {
2021-10-13 16:49:41 +02:00
2023-09-25 11:56:02 +02:00
initrd.availableKernelModules =
[ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
initrd.kernelModules = [ ];
kernelModules = [ ];
extraModulePackages = [ ];
};
2021-10-13 16:49:41 +02:00
2021-10-25 12:50:04 +02:00
fileSystems."/" = {
device = "/dev/disk/by-uuid/e8427097-8545-4924-b033-2659fcf9adca";
fsType = "ext4";
};
2021-10-13 16:49:41 +02:00
2023-05-04 13:08:10 +02:00
swapDevices =
[{ device = "/dev/disk/by-uuid/63d90b92-cdde-4795-a3ab-9566ae88f43d"; }];
2021-10-13 16:49:41 +02:00
}