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:
parent
7e8329d21e
commit
17f7cd8bc1
1 changed files with 3 additions and 3 deletions
|
|
@ -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" ];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue