mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
это победа, nixos на hostvds
This commit is contained in:
+13
-8
@@ -7,21 +7,20 @@
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
ESP = {
|
||||
boot = {
|
||||
type = "EF02";
|
||||
size = "512M";
|
||||
size = "1M";
|
||||
};
|
||||
ESP = {
|
||||
size = "500M";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "umask=0077" ];
|
||||
};
|
||||
};
|
||||
# swap = {
|
||||
# size = "2G";
|
||||
# content = {
|
||||
# type = "swap";
|
||||
# };
|
||||
# };
|
||||
root = {
|
||||
size = "100%";
|
||||
content = {
|
||||
@@ -30,6 +29,12 @@
|
||||
mountpoint = "/";
|
||||
};
|
||||
};
|
||||
swap = {
|
||||
size = "2G";
|
||||
content = {
|
||||
type = "swap";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user