diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:42:35 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-10-15 10:42:35 -0400 |
commit | ec268ec872e10d8942c4f6470291839707e6f6e6 (patch) | |
tree | e577ab17af5f31bf4cf9c62f9c82ee9af9a8084f | |
parent | fff944ff0a09a8cf8cf2058310b10236242b1a34 (diff) |
update oxo hardware configuration
-rw-r--r-- | machines/oxo/hardware-configuration.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/machines/oxo/hardware-configuration.nix b/machines/oxo/hardware-configuration.nix index b10d174..97458cd 100644 --- a/machines/oxo/hardware-configuration.nix +++ b/machines/oxo/hardware-configuration.nix @@ -14,31 +14,31 @@ boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/31affa04-8d5f-45fb-aa8e-d53bcaa885a7"; fsType = "btrfs"; options = [ "subvol=root" ]; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/31affa04-8d5f-45fb-aa8e-d53bcaa885a7"; fsType = "btrfs"; options = [ "subvol=boot" ]; }; fileSystems."/home" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/31affa04-8d5f-45fb-aa8e-d53bcaa885a7"; fsType = "btrfs"; options = [ "subvol=home" ]; }; fileSystems."/nix" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/31affa04-8d5f-45fb-aa8e-d53bcaa885a7"; fsType = "btrfs"; options = [ "subvol=nix" ]; }; fileSystems."/config" = - { device = "/dev/disk/by-uuid/f321b489-3003-4d4a-8e86-0eee0584e0f6"; + { device = "/dev/disk/by-uuid/31affa04-8d5f-45fb-aa8e-d53bcaa885a7"; fsType = "btrfs"; options = [ "subvol=config" ]; }; |