From bcef6d3ec0d3bb265e3b4ce56247bd6f344090a0 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Sat, 19 Nov 2022 17:24:39 -0500 Subject: [PATCH] Mount /home from separate vg --- flake.lock | 18 +++++++++--------- machines/hephaestus/hardware.nix | 5 +++++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/flake.lock b/flake.lock index fc857f1..5f27b33 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1668534244, - "narHash": "sha256-8sgzegrEVUZMJUg4jEiC6pokeMPY02BFe49iXnVrXkk=", + "lastModified": 1668784520, + "narHash": "sha256-gGgVAMwYPPmrfnvnoRi6OkEB5KRsNTb9uYzEceLdO/g=", "owner": "lnl7", "repo": "nix-darwin", - "rev": "4182ad42d5fb5001adb1f61bec3a04fae0eecb95", + "rev": "6349b99bc2b96ded34d068a88c7c5ced406b7f7f", "type": "github" }, "original": { @@ -28,11 +28,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1668332334, - "narHash": "sha256-YT1qcE/MCqBO1Bi/Yr6GcFpNKsvmzrBKh8juyXDbxQc=", + "lastModified": 1668788863, + "narHash": "sha256-FsdUG+YkRX7JZKZm6T44J2h+0pXB1sWA9AobyiozFK0=", "owner": "nix-community", "repo": "home-manager", - "rev": "bc90de24d898655542589237cc0a6ada7564cb6c", + "rev": "948d1f8a5cef55a281d4f5d17f3b79df6c82fce1", "type": "github" }, "original": { @@ -93,11 +93,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1668505710, - "narHash": "sha256-DulcfsGjpSXL9Ma0iQIsb3HRbARCDcA+CNH67pPyMQ0=", + "lastModified": 1668765800, + "narHash": "sha256-rC40+/W6Hio7b/RsY8SvQPKNx4WqNcTgfYv8cUMAvJk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "85d6b3990def7eef45f4502a82496de02a02b6e8", + "rev": "52b2ac8ae18bbad4374ff0dd5aeee0fdf1aea739", "type": "github" }, "original": { diff --git a/machines/hephaestus/hardware.nix b/machines/hephaestus/hardware.nix index e480e87..3c6ec1c 100644 --- a/machines/hephaestus/hardware.nix +++ b/machines/hephaestus/hardware.nix @@ -45,6 +45,11 @@ fsType = "ext4"; }; + fileSystems."/home" = { + device = "/dev/disk/by-uuid/e3ab2e1a-bddf-4ae0-b00a-bf954c6c182b"; + fsType = "ext4"; + }; + fileSystems."/boot/efi" = { device = "/dev/disk/by-uuid/3CFD-D749"; fsType = "vfat";