From 4aaa679f59222436668b8dc3275051bbb2b2a766 Mon Sep 17 00:00:00 2001 From: Leander Scherer Date: Fri, 6 Feb 2026 21:10:02 +0100 Subject: style(hosts): formatting --- modules/hosts/sachiel/hardware-configuration.nix | 70 ++++++++++++------------ 1 file changed, 34 insertions(+), 36 deletions(-) (limited to 'modules/hosts/sachiel/hardware-configuration.nix') diff --git a/modules/hosts/sachiel/hardware-configuration.nix b/modules/hosts/sachiel/hardware-configuration.nix index e188fae..4768a03 100644 --- a/modules/hosts/sachiel/hardware-configuration.nix +++ b/modules/hosts/sachiel/hardware-configuration.nix @@ -1,39 +1,37 @@ { - flake.modules.nixos.sachiel = - { ... }: - { - boot.loader.grub = { - efiSupport = true; - efiInstallAsRemovable = true; - device = "nodev"; - }; - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/4E07-7ABB"; - fsType = "vfat"; - }; - boot.initrd.availableKernelModules = [ - "ata_piix" - "uhci_hcd" - "xen_blkfront" - "vmw_pvscsi" - "virtio_net" - "virtio_pci" - "virtio_mmio" - "virtio_blk" - "virtio_scsi" - "9p" - "9pnet_virtio" - ]; - boot.initrd.kernelModules = [ - "nvme" - "virtio_balloon" - "virtio_console" - "virtio_rng" - "virtio_gpu" - ]; - fileSystems."/" = { - device = "/dev/vda1"; - fsType = "ext4"; - }; + flake.modules.nixos.sachiel = { + boot.loader.grub = { + efiSupport = true; + efiInstallAsRemovable = true; + device = "nodev"; }; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/4E07-7ABB"; + fsType = "vfat"; + }; + boot.initrd.availableKernelModules = [ + "ata_piix" + "uhci_hcd" + "xen_blkfront" + "vmw_pvscsi" + "virtio_net" + "virtio_pci" + "virtio_mmio" + "virtio_blk" + "virtio_scsi" + "9p" + "9pnet_virtio" + ]; + boot.initrd.kernelModules = [ + "nvme" + "virtio_balloon" + "virtio_console" + "virtio_rng" + "virtio_gpu" + ]; + fileSystems."/" = { + device = "/dev/vda1"; + fsType = "ext4"; + }; + }; } -- cgit v1.3.1