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, ... }:
{
disko.devices = {
disk.main = {
disk.disk1 = {
device = lib.mkDefault "/dev/nvme0n1";
type = "disk";
content = {
@ -15,7 +15,7 @@
};
esp = {
name = "ESP";
size = "1G";
size = "500M";
type = "EF00";
content = {
type = "filesystem";
@ -26,12 +26,11 @@
root = {
size = "100%";
content = {
type = "btrfs";
extraArgs = [ "-f" ];
type = "filesystem";
format = "ext4";
mountpoint = "/";
mountOptions = [
"compress=zstd"
"noatime" # ignore access times
"defaults"
];
};
};