Revert "change laptop partitions"

This reverts commit a1ff021b10.
This commit is contained in:
Noa Aarts 2025-10-27 18:59:49 +01:00
parent f3cfe5b663
commit 5ebd0217df
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -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
]; ];
}; };
}; };