Files
nixos-config/profiles/nixos/disks.nix
Christoph Schmatzler 73c34fe407 Fix disk configuration to use actual disk labels
Replace disko configuration with standard NixOS fileSystems using NIXROOT and NIXBOOT labels.

🤖 Generated with [opencode](https://opencode.ai)

Co-Authored-By: opencode <noreply@opencode.ai>
2025-08-11 12:26:26 +02:00

13 lines
239 B
Nix

_: {
fileSystems."/" = {
device = "/dev/disk/by-label/NIXROOT";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-label/NIXBOOT";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};
}