From 0b8d1f4eafe4e376634f2d46e44b8b7f603cc33a Mon Sep 17 00:00:00 2001 From: Bun Date: Mon, 24 Mar 2025 04:07:35 -0400 Subject: [PATCH] Disko tweaks to Qemu --- hosts/qemu/disko/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/qemu/disko/default.nix b/hosts/qemu/disko/default.nix index 05abe201..74f43547 100644 --- a/hosts/qemu/disko/default.nix +++ b/hosts/qemu/disko/default.nix @@ -6,7 +6,7 @@ disk = { "${config.networking.hostName}" = { type = "disk"; - device = "/dev/sda"; + device = "/dev/vda"; content = { type = "gpt"; partitions = { @@ -48,21 +48,21 @@ subvolumes = { "/root" = { mountpoint = "/"; - mountOptions = [ "compress=zstd" "noatime" "ssd" ]; + mountOptions = [ "compress=zstd" "noatime" ]; }; "/prev" = { mountpoint = "/prev"; - mountOptions = [ "compress=zstd" "noatime" "ssd" "noexec" ]; + mountOptions = [ "compress=zstd" "noatime" "noexec" ]; }; "/nix" = { mountpoint = "/nix"; - mountOptions = [ "compress=zstd" "noatime" "ssd" ]; + mountOptions = [ "compress=zstd" "noatime" ]; }; # Impermanence "/persist" = { mountpoint = "/persist"; - mountOptions = [ "compress=zstd" "noatime" "ssd" ]; + mountOptions = [ "compress=zstd" "noatime" ]; }; "/persist/.snapshots" = { }; "/persist/home" = { };