chore: format
This commit is contained in:
parent
60a95afd3b
commit
0c4d9ea95f
@ -1,14 +1,18 @@
|
||||
{ modulesPath, ... }:
|
||||
{
|
||||
{modulesPath, ...}: {
|
||||
imports = [(modulesPath + "/profiles/qemu-guest.nix")];
|
||||
boot.loader.grub = {
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
device = "nodev";
|
||||
};
|
||||
fileSystems."/boot" = { device = "/dev/disk/by-uuid/97E5-76C2"; fsType = "vfat"; };
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/97E5-76C2";
|
||||
fsType = "vfat";
|
||||
};
|
||||
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront" "vmw_pvscsi"];
|
||||
boot.initrd.kernelModules = ["nvme"];
|
||||
fileSystems."/" = { device = "/dev/mapper/centosvolume-root"; fsType = "xfs"; };
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "/dev/mapper/centosvolume-root";
|
||||
fsType = "xfs";
|
||||
};
|
||||
}
|
||||
|
@ -1,11 +1,15 @@
|
||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
||||
# and may be overwritten by future invocations. Please make changes
|
||||
# to /etc/nixos/configuration.nix instead.
|
||||
{ config, lib, pkgs, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[ (modulesPath + "/installer/scan/not-detected.nix")
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
modulesPath,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
(modulesPath + "/installer/scan/not-detected.nix")
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = ["xhci_pci" "ahci" "nvme" "usbhid" "usb_storage" "sd_mod"];
|
||||
@ -13,13 +17,13 @@
|
||||
boot.kernelModules = [];
|
||||
boot.extraModulePackages = [];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/2b1793d6-feff-48df-9180-03e8c2bef7bf";
|
||||
fileSystems."/" = {
|
||||
device = "/dev/disk/by-uuid/2b1793d6-feff-48df-9180-03e8c2bef7bf";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/2082-08EF";
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/2082-08EF";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user