diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-01 18:00:27 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-01 18:00:27 +0100 |
| commit | c0182f70c7e3070b4122ed98a5c1c5cba1741bec (patch) | |
| tree | 8e2f560bd34f111caf8ef1f5751f88d3147e3d67 /hosts/omega-relay/hardware-configuration.nix | |
| parent | fb26a8a59b840c6430c73df6c1cc44ecff156b67 (diff) | |
Format and do fixes
Diffstat (limited to 'hosts/omega-relay/hardware-configuration.nix')
| -rw-r--r-- | hosts/omega-relay/hardware-configuration.nix | 22 |
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"; } |
