diff --git a/hosts/nixos/pochita/hardware-configuration.nix b/hosts/nixos/pochita/hardware-configuration.nix index c174f0b..530fa03 100644 --- a/hosts/nixos/pochita/hardware-configuration.nix +++ b/hosts/nixos/pochita/hardware-configuration.nix @@ -8,23 +8,29 @@ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ ]; - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = { - device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; - fsType = "ext4"; + boot = { + initrd = { + availableKernelModules = [ ]; + kernelModules = [ ]; + }; + kernelModules = [ ]; + extraModulePackages = [ ]; }; - fileSystems."/boot/firmware" = { - device = "/dev/disk/by-uuid/2178-694E"; - fsType = "vfat"; - options = [ - "fmask=0022" - "dmask=0022" - ]; + fileSystems = { + "/" = { + device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; + fsType = "ext4"; + }; + + "/boot/firmware" = { + device = "/dev/disk/by-uuid/2178-694E"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; }; swapDevices = [ ];