Fix Archie's hardware-configuration.nix

The device key seems to escape the \x in the label, so I switched away from double quotes to avoid that
This commit is contained in:
Toast 2023-06-01 20:46:42 +02:00
parent 7e8329d21e
commit 17f7cd8bc1

View file

@ -14,19 +14,19 @@
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-label/Archie\x20SSD";
{ device = '/dev/disk/by-label/Archie\x20SSD';
fsType = "btrfs";
options = [ "subvol=@root" "compress=zstd" ];
};
fileSystems."/nix" =
{ device = "/dev/disk/by-label/Archie\x20SSD";
{ device = '/dev/disk/by-label/Archie\x20SSD';
fsType = "btrfs";
options = [ "subvol=@nix" "compress=zstd" ];
};
fileSystems."/boot" =
{ device = "/dev/disk/by-label/Archie\x20SSD";
{ device = '/dev/disk/by-label/Archie\x20SSD';
fsType = "btrfs";
options = [ "subvol=@boot" "compress=zstd" ];
};