parent
f3cfe5b663
commit
5ebd0217df
1 changed files with 5 additions and 6 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
{ lib, ... }:
|
{ lib, ... }:
|
||||||
{
|
{
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk.main = {
|
disk.disk1 = {
|
||||||
device = lib.mkDefault "/dev/nvme0n1";
|
device = lib.mkDefault "/dev/nvme0n1";
|
||||||
type = "disk";
|
type = "disk";
|
||||||
content = {
|
content = {
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
};
|
};
|
||||||
esp = {
|
esp = {
|
||||||
name = "ESP";
|
name = "ESP";
|
||||||
size = "1G";
|
size = "500M";
|
||||||
type = "EF00";
|
type = "EF00";
|
||||||
content = {
|
content = {
|
||||||
type = "filesystem";
|
type = "filesystem";
|
||||||
|
|
@ -26,12 +26,11 @@
|
||||||
root = {
|
root = {
|
||||||
size = "100%";
|
size = "100%";
|
||||||
content = {
|
content = {
|
||||||
type = "btrfs";
|
type = "filesystem";
|
||||||
extraArgs = [ "-f" ];
|
format = "ext4";
|
||||||
mountpoint = "/";
|
mountpoint = "/";
|
||||||
mountOptions = [
|
mountOptions = [
|
||||||
"compress=zstd"
|
"defaults"
|
||||||
"noatime" # ignore access times
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue