aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/sachiel
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-02-06 21:10:02 +0100
committerLeander Scherer <leander@schererleander.de>2026-02-06 21:10:02 +0100
commit4aaa679f59222436668b8dc3275051bbb2b2a766 (patch)
tree77ff594708c8af3686bf9ca7303e78df6d90d436 /modules/hosts/sachiel
parent0070d30074cb71ca745644384d230abeaa0a2d04 (diff)
style(hosts): formatting
Diffstat (limited to 'modules/hosts/sachiel')
-rw-r--r--modules/hosts/sachiel/hardware-configuration.nix70
1 files changed, 34 insertions, 36 deletions
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";
+ };
+ };
}