Skip to content

Commit 3f8b1f5

Browse files
style: auto fmt (#234)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 6f825b9 commit 3f8b1f5

1 file changed

Lines changed: 25 additions & 21 deletions

File tree

hosts/systems/laptop/hardware-configuration.nix

Lines changed: 25 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,36 @@
11
# Do not modify this file! It was generated by ‘nixos-generate-config’
22
# and may be overwritten by future invocations. Please make changes
33
# to /etc/nixos/configuration.nix instead.
4-
{ config, lib, pkgs, modulesPath, ... }:
5-
64
{
7-
imports =
8-
[ (modulesPath + "/installer/scan/not-detected.nix")
9-
];
5+
config,
6+
lib,
7+
pkgs,
8+
modulesPath,
9+
...
10+
}: {
11+
imports = [
12+
(modulesPath + "/installer/scan/not-detected.nix")
13+
];
1014

11-
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod" ];
12-
boot.initrd.kernelModules = [ ];
13-
boot.kernelModules = [ "kvm-amd" ];
14-
boot.extraModulePackages = [ ];
15+
boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usb_storage" "sd_mod"];
16+
boot.initrd.kernelModules = [];
17+
boot.kernelModules = ["kvm-amd"];
18+
boot.extraModulePackages = [];
1519

16-
fileSystems."/" =
17-
{ device = "/dev/disk/by-uuid/91f3c4c8-a7b9-4b78-9485-aa2493fccb14";
18-
fsType = "xfs";
19-
};
20+
fileSystems."/" = {
21+
device = "/dev/disk/by-uuid/91f3c4c8-a7b9-4b78-9485-aa2493fccb14";
22+
fsType = "xfs";
23+
};
2024

21-
fileSystems."/boot" =
22-
{ device = "/dev/disk/by-uuid/8ADA-57CC";
23-
fsType = "vfat";
24-
options = [ "fmask=0077" "dmask=0077" ];
25-
};
25+
fileSystems."/boot" = {
26+
device = "/dev/disk/by-uuid/8ADA-57CC";
27+
fsType = "vfat";
28+
options = ["fmask=0077" "dmask=0077"];
29+
};
2630

27-
swapDevices =
28-
[ { device = "/dev/disk/by-uuid/46bf1559-83ee-47a9-8f6d-bc34bc71550b"; }
29-
];
31+
swapDevices = [
32+
{device = "/dev/disk/by-uuid/46bf1559-83ee-47a9-8f6d-bc34bc71550b";}
33+
];
3034

3135
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
3236
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;

0 commit comments

Comments
 (0)