summaryrefslogtreecommitdiff
path: root/hosts/omega-relay/hardware-configuration.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2026-02-01 18:00:27 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2026-02-01 18:00:27 +0100
commitc0182f70c7e3070b4122ed98a5c1c5cba1741bec (patch)
tree8e2f560bd34f111caf8ef1f5751f88d3147e3d67 /hosts/omega-relay/hardware-configuration.nix
parentfb26a8a59b840c6430c73df6c1cc44ecff156b67 (diff)
Format and do fixes
Diffstat (limited to '')
-rw-r--r--hosts/omega-relay/hardware-configuration.nix22
1 files changed, 14 insertions, 8 deletions
diff --git a/hosts/omega-relay/hardware-configuration.nix b/hosts/omega-relay/hardware-configuration.nix
index 247b382..328d228 100644
--- a/hosts/omega-relay/hardware-configuration.nix
+++ b/hosts/omega-relay/hardware-configuration.nix
@@ -1,20 +1,26 @@
# 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.
-{ config, lib, pkgs, modulesPath, ... }:
+{ lib, modulesPath, ... }:
{
- imports =
- [ (modulesPath + "/profiles/qemu-guest.nix")
- ];
+ imports = [
+ (modulesPath + "/profiles/qemu-guest.nix")
+ ];
- boot.initrd.availableKernelModules = [ "ahci" "xhci_pci" "virtio_pci" "sr_mod" "virtio_blk" ];
+ boot.initrd.availableKernelModules = [
+ "ahci"
+ "xhci_pci"
+ "virtio_pci"
+ "sr_mod"
+ "virtio_blk"
+ ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
- hosts.omega-relay.root_device = "/dev/vda";
- hosts.omega-relay.do_disko = true;
- addons.virtualisation.isTestVM = true;
+ hosts.omega-relay.root_device = "/dev/vda";
+ hosts.omega-relay.do_disko = true;
+ addons.virtualisation.isTestVM = true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}