Skip to content

Commit

Permalink
fix(palpatine): drive name
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr committed Mar 9, 2024
1 parent 8dfb826 commit b6844a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions hosts/palpatine/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@
boot.extraModulePackages = [ ];

fileSystems."/" =
{ device = "/dev/nvme0n1p5";
{ device = "/dev/nvme1n1p5";
fsType = "btrfs";
options = [ "subvol=@" ] ++ commonMountOptions;
};

fileSystems."/home" =
{ device = "/dev/nvme0n1p5";
{ device = "/dev/nvme1n1p5";
fsType = "btrfs";
options = [ "subvol=@home" ] ++ commonMountOptions;
};

fileSystems."/nix" =
{ device = "/dev/nvme0n1p5";
{ device = "/dev/nvme1n1p5";
fsType = "btrfs";
options = [ "subvol=@nix" ] ++ commonMountOptions;
};

fileSystems."/boot/efi" =
{ device = "/dev/nvme0n1p4";
{ device = "/dev/nvme1n1p4";
fsType = "vfat";
};

Expand Down

0 comments on commit b6844a7

Please sign in to comment.