Skip to content

Commit 7041982

Browse files
Format sigmachine hardware configuration
1 parent f1710f3 commit 7041982

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

hardware/sigmachine.hardware-configuration.nix

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
{
77
imports =
8-
[ (modulesPath + "/installer/scan/not-detected.nix")
8+
[
9+
(modulesPath + "/installer/scan/not-detected.nix")
910
];
1011

1112
boot.initrd.availableKernelModules = [ "xhci_pci" "thunderbolt" "nvme" "usb_storage" "sd_mod" ];
@@ -14,19 +15,20 @@
1415
boot.extraModulePackages = [ ];
1516

1617
fileSystems."/" =
17-
{ device = "/dev/disk/by-uuid/6ad62d4c-97f4-40da-b0b3-2030dd8f74c0";
18+
{
19+
device = "/dev/disk/by-uuid/6ad62d4c-97f4-40da-b0b3-2030dd8f74c0";
1820
fsType = "ext4";
1921
};
2022

2123
fileSystems."/boot" =
22-
{ device = "/dev/disk/by-uuid/DAAD-3276";
24+
{
25+
device = "/dev/disk/by-uuid/DAAD-3276";
2326
fsType = "vfat";
2427
options = [ "fmask=0022" "dmask=0022" ];
2528
};
2629

2730
swapDevices =
28-
[ { device = "/dev/disk/by-uuid/c797aedc-1bdb-4f86-bc35-ad5a9688e057"; }
29-
];
31+
[{ device = "/dev/disk/by-uuid/c797aedc-1bdb-4f86-bc35-ad5a9688e057"; }];
3032

3133
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
3234
# (the default) this is the recommended approach. When using systemd-networkd it's

0 commit comments

Comments
 (0)