*/fs.nix: remove extraneous mkDefaults

these are no longer needed with the new image builder.
This commit is contained in:
colin 2022-06-23 21:21:01 -07:00
parent 66534fed25
commit e7f05fa2ec
4 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
{ lib, ... }:
{ ... }:
{
fileSystems."/" = lib.mkDefault {
fileSystems."/" = {
device = "/dev/disk/by-uuid/985a0a32-da52-4043-9df7-615adec2e4ff";
fsType = "btrfs";
options = [
@ -11,7 +11,7 @@
};
fileSystems."/boot" = {
device = lib.mkDefault "/dev/disk/by-uuid/CAA7-E7D2";
device = "/dev/disk/by-uuid/CAA7-E7D2";
fsType = "vfat";
};
}

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ ... }:
{
fileSystems."/" = {
@ -21,7 +21,7 @@
};
fileSystems."/boot" = {
device = lib.mkDefault "/dev/disk/by-uuid/BD79-D6BB";
device = "/dev/disk/by-uuid/BD79-D6BB";
fsType = "vfat";
};

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ ... }:
{
fileSystems."/" = {
@ -11,7 +11,7 @@
};
fileSystems."/boot" = {
device = lib.mkDefault "/dev/disk/by-uuid/0299-F1E5";
device = "/dev/disk/by-uuid/0299-F1E5";
fsType = "vfat";
};
}

View File

@ -1,12 +1,12 @@
{ lib, ... }:
{ ... }:
{
fileSystems."/" = lib.mkDefault {
fileSystems."/" = {
device = "/dev/disk/by-uuid/2be70d38-79f4-41b6-bee2-bce5a25f8f7b";
fsType = "ext4";
};
fileSystems."/boot" = {
device = lib.mkDefault "/dev/disk/by-uuid/B318-A67E";
device = "/dev/disk/by-uuid/B318-A67E";
fsType = "vfat";
};