mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
123
This commit is contained in:
Binary file not shown.
@@ -7,15 +7,15 @@
|
|||||||
content = {
|
content = {
|
||||||
type = "gpt";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
# ESP = {
|
ESP = {
|
||||||
# type = "EF00";
|
type = "EF02";
|
||||||
# size = "512M";
|
size = "512M";
|
||||||
# content = {
|
content = {
|
||||||
# type = "filesystem";
|
type = "filesystem";
|
||||||
# format = "vfat";
|
format = "vfat";
|
||||||
# mountpoint = "/boot";
|
mountpoint = "/boot";
|
||||||
# };
|
};
|
||||||
# };
|
};
|
||||||
# swap = {
|
# swap = {
|
||||||
# size = "2G";
|
# size = "2G";
|
||||||
# content = {
|
# content = {
|
||||||
|
|||||||
@@ -34,27 +34,16 @@
|
|||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = lib.mkForce "/dev/vda1"; # "/dev/disk/by-partlabel/disk-main-root";
|
device = lib.mkForce "/dev/vda2"; # "/dev/disk/by-partlabel/disk-main-root";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
"/boot" = {
|
||||||
|
device = lib.mkForce "/dev/vda1";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# fileSystems."/" =
|
|
||||||
# { device = "/dev/disk/by-uuid/8acccc34-edc6-4934-886c-ef4b778ca24a";
|
|
||||||
# fsType = "ext4";
|
|
||||||
# };
|
|
||||||
#
|
|
||||||
# fileSystems."/boot" =
|
|
||||||
# { device = "/dev/disk/by-uuid/DDF2-C940";
|
|
||||||
# fsType = "vfat";
|
|
||||||
# options = [ "fmask=0022" "dmask=0022" ];
|
|
||||||
# };
|
|
||||||
#
|
|
||||||
# fileSystems."/home/otreca/External" =
|
|
||||||
# { device = "/dev/disk/by-uuid/37e53ebc-5343-a94d-9fe2-0ca39e13a8de";
|
|
||||||
# fsType = "ext4";
|
|
||||||
# };
|
|
||||||
|
|
||||||
# swapDevices = [
|
# swapDevices = [
|
||||||
# { device = "/dev/disk/by-partlabel/disk-main-swap"; }
|
# { device = "/dev/disk/by-partlabel/disk-main-swap"; }
|
||||||
# ];
|
# ];
|
||||||
|
|||||||
Reference in New Issue
Block a user