diff --git a/hosts/lenar/disko.nix b/hosts/lenar/disko.nix index 8a35c81..8f4d521 100644 --- a/hosts/lenar/disko.nix +++ b/hosts/lenar/disko.nix @@ -38,7 +38,10 @@ }; # Parent is not mounted so the mountpoint must be set "/nix" = { - mountOptions = [ "compress=zstd" "noatime" ]; + mountOptions = [ + "compress=zstd" + "noatime" + ]; mountpoint = "/nix"; }; }; @@ -50,4 +53,4 @@ }; }; }; -} \ No newline at end of file +} diff --git a/hosts/lenar/hardware-configuration.nix b/hosts/lenar/hardware-configuration.nix index 39024d8..68b6275 100644 --- a/hosts/lenar/hardware-configuration.nix +++ b/hosts/lenar/hardware-configuration.nix @@ -1,11 +1,25 @@ -{ config, lib, pkgs, modulesPath, ... }: +{ + config, + lib, + pkgs, + modulesPath, + ... +}: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "vmd" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ]; + boot.initrd.availableKernelModules = [ + "xhci_pci" + "thunderbolt" + "vmd" + "nvme" + "usb_storage" + "sd_mod" + "sdhci_pci" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; @@ -19,4 +33,4 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; -} \ No newline at end of file +}