From 2e84e346e9bd1023123d758037512b81cb5f1df1 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Thu, 16 Sep 2021 12:17:04 -0400 Subject: [PATCH] feat: add disks to Infini-SWIFT config --- hosts/Infini-SWIFT/hardware-configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/hosts/Infini-SWIFT/hardware-configuration.nix b/hosts/Infini-SWIFT/hardware-configuration.nix index 0b4796c..d61c3af 100644 --- a/hosts/Infini-SWIFT/hardware-configuration.nix +++ b/hosts/Infini-SWIFT/hardware-configuration.nix @@ -15,4 +15,17 @@ boot.extraModulePackages = [ ]; powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; + + fileSystems."/" = { device = "/dev/disk/by-label/4a964f22-e270-42df-ae54-00f91d89edd9"; + fsType = "ext4"; + }; + fileSystems."/boot" = { device = "/dev/disk/by-uuid/6836-6848"; + fsType = "vfat"; + }; + + swapDevices = [ + { + device = "/dev/disk/by-uuid/8d0f13e7-135e-4dfd-9090-fabf1fc406c2"; + } + ]; }