Skip to content

Commit

Permalink
fix(palpatine): switch boot drive
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr committed Mar 2, 2024
1 parent d3960a7 commit 8dfb826
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hosts/palpatine/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# enable IP forwarding so this machine can be a Tailscale exit node
kernel.sysctl."net.ipv4.ip_forward" = 1;

binfmt.emulatedSystems = ["aarch64-linux"];
#binfmt.emulatedSystems = ["aarch64-linux"];
};

networking = {
Expand Down
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/nvme1n1p5";
{ device = "/dev/nvme0n1p5";
fsType = "btrfs";
options = [ "subvol=@" ] ++ commonMountOptions;
};

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

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

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

Expand Down

0 comments on commit 8dfb826

Please sign in to comment.