formatting pass

aarch64
Zynh Ludwig 2024-02-26 00:23:21 -08:00
parent 64db2cecf5
commit 97a8146467
2 changed files with 21 additions and 15 deletions

View File

@ -6,7 +6,8 @@
{ {
imports = imports =
[ # Include the results of the hardware scan. [
# Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
@ -106,6 +107,8 @@
dotnet-sdk_8 dotnet-sdk_8
unzip unzip
nixpkgs-fmt nixpkgs-fmt
lua-language-server
stylua
]; ];
}; };

View File

@ -5,7 +5,8 @@
{ {
imports = imports =
[ (modulesPath + "/profiles/qemu-guest.nix") [
(modulesPath + "/profiles/qemu-guest.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ]; boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
@ -14,12 +15,14 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a"; {
device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/31B8-8850"; {
device = "/dev/disk/by-uuid/31B8-8850";
fsType = "vfat"; fsType = "vfat";
}; };