formatting pass
This commit is contained in:
parent
64db2cecf5
commit
97a8146467
2 changed files with 21 additions and 15 deletions
|
@ -6,7 +6,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
[
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
|
@ -106,6 +107,8 @@
|
|||
dotnet-sdk_8
|
||||
unzip
|
||||
nixpkgs-fmt
|
||||
lua-language-server
|
||||
stylua
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@
|
|||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/profiles/qemu-guest.nix")
|
||||
[
|
||||
(modulesPath + "/profiles/qemu-guest.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" "usbhid" "usb_storage" "sr_mod" ];
|
||||
|
@ -14,12 +15,14 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/fa4ed906-f26b-40ec-859c-81813151c33a";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/31B8-8850";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/31B8-8850";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue