aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-02-16 19:02:48 +0900
committersefidel <contact@sefidel.net>2023-02-16 19:03:00 +0900
commit3938fe9919e86a8943174684d2d80b60a704d4dc (patch)
treebf13fca866c735646a09a6f2eb7e01ef86dd788a
parent9a079d6837db490d19b2a10c9d4f422bedce7732 (diff)
downloadnixrc-3938fe9919e86a8943174684d2d80b60a704d4dc.zip
project: reformat
-rw-r--r--nixos/alpha/hardware-configuration.nix24
1 files changed, 15 insertions, 9 deletions
diff --git a/nixos/alpha/hardware-configuration.nix b/nixos/alpha/hardware-configuration.nix
index 3c702eb..18f1e42 100644
--- a/nixos/alpha/hardware-configuration.nix
+++ b/nixos/alpha/hardware-configuration.nix
@@ -5,7 +5,8 @@
{
imports =
- [ (modulesPath + "/installer/scan/not-detected.nix")
+ [
+ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ];
@@ -14,38 +15,43 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
- { device = "rpool/local/root";
+ {
+ device = "rpool/local/root";
fsType = "zfs";
};
fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/C5C1-09F1";
+ {
+ device = "/dev/disk/by-uuid/C5C1-09F1";
fsType = "vfat";
};
fileSystems."/nix" =
- { device = "rpool/local/nix";
+ {
+ device = "rpool/local/nix";
fsType = "zfs";
};
fileSystems."/home" =
- { device = "rpool/safe/home";
+ {
+ device = "rpool/safe/home";
fsType = "zfs";
};
fileSystems."/persist" =
- { device = "rpool/safe/persist";
+ {
+ device = "rpool/safe/persist";
fsType = "zfs";
};
fileSystems."/mnt/resident" =
- { device = "/dev/disk/by-uuid/fe7a00a8-0a3c-48de-9d7a-ed7cf172f501";
+ {
+ device = "/dev/disk/by-uuid/fe7a00a8-0a3c-48de-9d7a-ed7cf172f501";
fsType = "ext4";
};
swapDevices =
- [ { device = "/dev/disk/by-uuid/4f06a42c-c4cc-4861-8ae0-dcff81d719d3"; }
- ];
+ [{ device = "/dev/disk/by-uuid/4f06a42c-c4cc-4861-8ae0-dcff81d719d3"; }];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's