cleanup rico1 filesystems
This commit is contained in:
parent
2f1c2c981f
commit
c966a0cbaf
1 changed files with 11 additions and 5 deletions
|
@ -1,34 +1,40 @@
|
||||||
_: {
|
_: {
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
device = "/dev/disk/by-label/RICO1_ROOT";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@root" "compress-force=zstd" "noatime" ];
|
options = [ "subvol=@root" "compress-force=zstd" "noatime" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/nix" = {
|
"/nix" = {
|
||||||
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
device = "/dev/disk/by-label/RICO1_ROOT";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@nix" "compress-force=zstd" "noatime" ];
|
options = [ "subvol=@nix" "compress-force=zstd" "noatime" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/persist" = {
|
"/persist" = {
|
||||||
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
device = "/dev/disk/by-label/RICO1_ROOT";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=@persist" "compress-force=zstd" "noatime" ];
|
options = [ "subvol=@persist" "compress-force=zstd" "noatime" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
"/mnt/system" = {
|
"/mnt/system" = {
|
||||||
device = "/dev/disk/by-partlabel/NIXOS_ROOT";
|
device = "/dev/disk/by-label/RICO1_ROOT";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = [ "subvol=/" "compress-force=zstd" "noatime" ];
|
options = [ "subvol=/" "compress-force=zstd" "noatime" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-partlabel/NIXOS_BOOT";
|
device = "/dev/disk/by-label/RICO1_BOOT";
|
||||||
|
fsType = "ext2";
|
||||||
|
options = [ "noatime" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
"/boot/firmware" = {
|
||||||
|
device = "/dev/disk/by-label/R1_FIRMWARE";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue